web-dev-qa-db-fra.com

quelle est la différence wp_get_attachment_url/wp_get_attachment_src/get_post_thumbnail_id?

** ceci est un exemple de code, il me faut une galerie d’images, de petites photos en bas, en cliquant sur une image ci-dessus Jusqu'à présent, je ne peux pas ouvrir une grande image. **

<li><a data-image-id="'.$photo_id.'" href="'. get_permalink($photo_id).'"> <img data-image-id="'.$photo_id.'" class="thumbnail" src="'.get_the_post_thumbnail('small_thumbnail').'"></a></li>

Il n'y a pas de fonction WordPress wp_get_attachment_src lorsque vous souhaitez obtenir une réponse, vous devez effacer vos questions et également descriptif

Je vous donne une explication de votre question. vous quelle est la différence wp_get_attachment_url/wp_get_attachment_src/get_post_thumbnail_id?

wp_get_attachment_url ($ id)

Retourne un URI complet pour un fichier en pièce jointe ou false en cas d'échec. Ici id est pièce jointe id

Exemple

echo wp_get_attachment_url( $id ); 
echo wp_get_attachment_url( 12 );
$example_url = wp_get_attachment_url( get_post_thumbnail_id() );
echo '<div style="background-image:url('.$example_url.');"></div>';

wp_get_attachment_image_src ()

retourne la valeur du tableau de l'attribut image

Exemple

wp_get_attachment_image_src( int $attachment_id, string|array $size = 'thumbnail', bool $icon = false )

$image_attributes = wp_get_attachment_image_src( $attachment_id = 8 );
if ( $image_attributes ) : ?>
    <img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>" />
<?php endif; ?>

get_post_thumbnail_id () retourne l'ID de l'image sélectionnée

Exemple:

get_post_thumbnail_id($post_id)
$post_thumbnail_id = get_post_thumbnail_id( $post_id );

Maintenant la solution de votre problème

Je suppose que $ photo_id est votre identifiant de publication

<li><a data-image-id="'.$photo_id.'" href="'. get_permalink($photo_id).'">
<img data-image-id="'.$photo_id.'" class="thumbnail" src="'.get_the_post_thumbnail( $photo_id, 'thumbnail', array( 'class' => 'alignleft' ) );.'"></a>
</li>

pour plus d'informations, suivez le codex:

get_post_thumbnail_id ()

wp_get_attachment_image_src ()

wp_get_attachment_url ()

3
Faysal Mahamud