¿Estás buscando una forma de enlazar automáticamente todas las miniaturas de las entradas con el permalink de la entrada? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para vincular automáticamente todas las miniaturas de la entrada al permalink de la entrada en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
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; }
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 43 temas de WordPress simples para iniciar un sitio web y cómo configurar Shopify con 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.