How To Retrive Featured Image Link Url?

Discussion in 'WordPress' started by macaela, Jan 30, 2013.

  1. #1
    Hi guys I have been trying to get the set the featured image url but it I can only link to the post itself or to the image itself, when I add featured image on the link URL I add a different link but it doesnt work is there a way I can add different link on the featured image and then retrieve this link on the code? so it would be something like
    <a href="<?php link_url(); ?>"><?php the_post_thumbnail('medium'); ?></a>
     
    macaela, Jan 30, 2013 IP
  2. ahost

    ahost Active Member

    Messages:
    106
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    88
    #2
    Just use get_the_post_thumbnail function instead of the_post_thumbnail, like this:
    <a href="<?php link_url(); ?>"><?php echo get_the_post_thumbnail('medium'); ?></a
    note "echo", as get_the_post_thumbnail displays nothing, just returns the img tag.
     
    ahost, Jan 31, 2013 IP