[Resolved] Add custom link to featured image on post page

Home Forums Support [Resolved] Add custom link to featured image on post page

Home Forums Support Add custom link to featured image on post page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #692761
    Liberty

    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 πŸ™‚

    #693006
    Tom
    Lead Developer
    Lead Developer

    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 πŸ™‚

    #693042
    Liberty

    Perfect ! Thank you πŸ™‚

    #693481
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

    #1826470
    Matt

    Hey @tom, this helped me out a ton. Thanks so much!

    #1827159
    Tom
    Lead Developer
    Lead Developer

    No problem! πŸ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.