Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created September 24, 2013 14:24
Show Gist options
  • Save rupert-ong/6685564 to your computer and use it in GitHub Desktop.
Save rupert-ong/6685564 to your computer and use it in GitHub Desktop.
Wordpress: Get Featured Image Source
<?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