web-dev-qa-db-fra.com

Comment obtenir l'URL de l'image de l'article en vedette dans WordPress

J'utilise cette fonction pour obtenir les images en vedette

<a href="#" rel="prettyPhoto">
<?php the_post_thumbnail('thumbnail'); ?>
</a>

maintenant, je veux obtenir l'image complète en cliquant sur la balise d'ancrage pour laquelle j'ai besoin d'une URL de l'image en vedette dans 

<a href="here" rel="prettyPhoto">

s'il vous plaît aider

120
ManpreetSandhu

Vérifiez le code ci-dessous et faites-moi savoir si cela fonctionne pour vous.

<?php if (has_post_thumbnail( $post->ID ) ): ?>
  <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
  <div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')">

  </div>
<?php endif; ?>
257
swapnesh

Si vous voulez juste la source et pas un tableau avec d'autres informations:

<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
<img src="<?php echo $url ?>" />

89
LOLapalooza
// Try it inside loop.  
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>
17
Omprakash Patel

Moyen facile!

 <?php 
     wp_get_attachment_url(get_post_thumbnail_id(get_the_ID()))
 ?>
13

Cela a parfaitement fonctionné pour moi:

<?php echo get_the_post_thumbnail_url($post_id, 'thumbnail'); ?>
10
maxim

salut je pense que c'est la solution la plus facile et la mise à jour;

<?php the_post_thumbnail( 'single-post-thumbnail' ); ?>
6
Fredrick Boaz

C'est la réponse la plus simple . <?php $img = get_the_post_thumbnail_url($postID,'post-thumbnail' ); ?>

5

Vous pouvez essayer ceci:

<?php 
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); 
echo $feat_image; 
?>
5
nim

Vous pouvez aussi l'obtenir de post_meta comme ceci:

echo get_post_meta($post->ID, 'featured_image', true);
3
Dhyey

Essaye celui-là

<?php 
    echo get_the_post_thumbnail($post_id, 'thumbnail', array('class' => 'alignleft')); 
?>
3
yahya akhtar

Vous pouvez également utiliser pour obtenir l'URL pour les pièces jointes d'image comme suit. Ça fonctionne bien.

if ( has_post_thumbnail() ) {
 $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ),  'medium' ); 
}
3
farhan

Vous pouvez essayer ça.

<?php
   $image_url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
?>
<a href="<?php echo $image_url; ?>" rel="prettyPhoto">
3
Jakir Hossain

Vous allez essayer ceci 

<?php $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID),'full' ); ?>//Here you can manage your image size like medium,thumbnail or custom size
 <img src="<?php echo $url ?>" />
2
Viral M
<?php
    if (has_post_thumbnail( $post->ID ) ):
        $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
?>
        <img src="<?php echo $image[0]; ?>">  
<?php endif; ?>
1
Dhruvin Moradiya

vous pouvez également utiliser pour obtenir l'URL pour les pièces jointes d'image comme suit: 

<?php
"<div><a href=".get_permalink(id).">".wp_get_attachment_url(304, array(50,50), 1)."</a></div>";
?>
0
user3615759
 <?php $image_src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail_size' );

 $feature_image_url = $image_src[0]; ?>

Vous pouvez modifier la valeur thumbnail_size en fonction de votre taille requise.