Archived topic
Add custom link to featured image on post page
5 replies · Started by Liberty on October 3, 2018
Viewing posts 1–6 of 6
Hello,
Is there a filter to add a custom link to the featured image on each post.
I simply want to add a pinterest share link on each of my featured image :)
Thank you :)
Hi there,
You could try something like this:
add_filter( 'generate_single_featured_image_output', function( $output, $image_html ) {
printf(
'<div class="featured-image">
<a href="#YOUR-URL">
%1$s
</a>
</div>',
$image_html
);
}, 10, 2 );
Let me know :)
Perfect ! Thank you :)
You're welcome :)
Hey @tom, this helped me out a ton. Thanks so much!
No problem! :)
This archived topic is closed to new replies.