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
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; ?>
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 ?>" />
// Try it inside loop.
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>
Moyen facile!
<?php
wp_get_attachment_url(get_post_thumbnail_id(get_the_ID()))
?>
Cela a parfaitement fonctionné pour moi:
<?php echo get_the_post_thumbnail_url($post_id, 'thumbnail'); ?>
salut je pense que c'est la solution la plus facile et la mise à jour;
<?php the_post_thumbnail( 'single-post-thumbnail' ); ?>
C'est la réponse la plus simple .
<?php
$img = get_the_post_thumbnail_url($postID,'post-thumbnail' );
?>
Vous pouvez essayer ceci:
<?php
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
echo $feat_image;
?>
Vous pouvez aussi l'obtenir de post_meta comme ceci:
echo get_post_meta($post->ID, 'featured_image', true);
Essaye celui-là
<?php
echo get_the_post_thumbnail($post_id, 'thumbnail', array('class' => 'alignleft'));
?>
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' );
}
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">
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 ?>" />
<?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; ?>
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>";
?>
<?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.