Skip to content

Instantly share code, notes, and snippets.

@FrankM1
Created May 7, 2013 06:17
Show Gist options
  • Save FrankM1/5530579 to your computer and use it in GitHub Desktop.
Save FrankM1/5530579 to your computer and use it in GitHub Desktop.
/* In functions.php */
function my_theme_get_post_format_image_src($post_id){
$format_meta = get_post_format_meta($post_id);
$match = array();
preg_match('/<img.*?src="([^"]+)"/s', $format_meta['image'], $match);
return $match[1];
}
/* In the template file */
$image_src = my_theme_get_post_format_image_src($post->ID);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment