Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created May 26, 2013 13:01
Show Gist options
  • Save jswhisperer/5652716 to your computer and use it in GitHub Desktop.
Save jswhisperer/5652716 to your computer and use it in GitHub Desktop.
WordPress: Get featured image url
<?php
$imgsrc = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), "Full");
echo $imgsrc[0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment