Skip to content

Instantly share code, notes, and snippets.

@matesnippets
Created December 25, 2014 18:00
Show Gist options
  • Save matesnippets/f0652f15bc1c062524ad to your computer and use it in GitHub Desktop.
Save matesnippets/f0652f15bc1c062524ad to your computer and use it in GitHub Desktop.
PHP, WP, Get the first image inserted into a post body
/**
* Get the first image inserted into a post body
*/
function get_first_inserted_image()
{
global $post, $posts;
preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
// Spew it out as an imege
$first_img = '<img alt="Blog Post Image" src="' . $first_img . '">';
return $first_img;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment