feature image link

  • Posted in : Read WP
  • mindedmind
    Participant

    Hello, I’d like to have my feature images link to the post that they feature.

    How can I do this?

    Thank you

    Mehmet S.
    Keymaster

    Hi,

    – go to appearance > editor > format-standard.php

    – find:

    the_post_thumbnail( 'blog_feat_img', array( 'alt' => get_the_title(), 'title' => "" ) );
    

    – replace:

    '<a href="' . the_permalink() . '">' . the_post_thumbnail( 'blog_feat_img', array( 'alt' => get_the_title(), 'title' => "" ) ) . '</a>';
    
    mindedmind
    Participant

    Hey Mehmet,

    Thanks for the code.

    When i followed your instructions, the photo didn’t link to the post. What happened was the url for the post was embedded on the main page above the picture. The url didn’t link the post either.

    Mehmet S.
    Keymaster

    Try this one:

    echo '<a href="' . the_permalink() . '">'; the_post_thumbnail( 'blog_feat_img', array( 'alt' => get_the_title(), 'title' => "" ) ); echo '</a>';
    
    Mehmet S.
    Keymaster

    Edited:

    echo '<a href="' . get_permalink() . '">'; the_post_thumbnail( 'blog_feat_img', array( 'alt' => get_the_title(), 'title' => "" ) ); echo '</a>';
    
    mindedmind
    Participant

    Beautiful.

    Nice work Mehmet.

    Thank you.

    Mehmet S.
    Keymaster

    You are welcome.

Viewing 7 posts - 1 through 7 (of 7 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register