Você está procurando uma maneira de vincular automaticamente todas as miniaturas de postagens ao link permanente da postagem? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para vincular automaticamente todas as miniaturas de postagem ao link permanente da postagem no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do 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; }
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 43 temas simples do WordPress para iniciar um site e como configurar o Shopify com o 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.