Vous cherchez un moyen de lier automatiquement toutes les vignettes des articles au lien de l’article ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour lier automatiquement toutes les vignettes de l’article au permalien de l’article dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier functions.php de votre thème ou dans un plugin spécifique à votre site:
add_filter( 'post_thumbnail_html', 'wps_post_thumbnail', 10, 3 ); function wps_post_thumbnail( $html, $post_id, $post_image_id ) { $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_post_field( 'post_title', $post_id ) ) . '">' . $html . '</a>'; return $html; }
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez vous référer à notre guide sur comment copier/coller correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 43 thèmes WordPress simples pour démarrer un site web et comment configurer Shopify avec WordPress.
Thanks a lot ! 🙂
no problem!
Thank you..
How do I get this to link to the media file instead of the permalink?
Hi there, thanks for sharing…
How it is possible to echo the categories from the thumbnails ID.
I ‘ve tried ” get_the_category( $thumbnail->ID ) “, nothing happens.
Thanks in advance…
Hi… it doesn’t work for me please help.. i want all the images in my all posts get attached to post permalink on home page..
Do you have post thumbnails enabled in your theme? this will not just take any images and link to the post.
[…] Tip: Linking Thumbnails To The Post Permalink Auto link post thumbnails to the post permalink [WordPress SEO] How to Use Post Permalink and Post Title […]
so great but simple ! i am finding it ! …..
Cool glad you like it.
[…] WP-Snipp Twitter deze pagina! […]
Neet! Going to try this ASAP, and post it on my site. I’ll backlink.
Cool thanks a link back is always nice.