Skip to content

Instantly share code, notes, and snippets.

@ivandoric
Created April 23, 2014 15:13
Show Gist options
  • Save ivandoric/11219354 to your computer and use it in GitHub Desktop.
Save ivandoric/11219354 to your computer and use it in GitHub Desktop.
wordpress: Print the link of the featured image
<?php if ( has_post_thumbnail()) {
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
echo $large_image_url[0];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment