Skip to content

Instantly share code, notes, and snippets.

@misfist
Last active January 24, 2018 20:34
Show Gist options
  • Save misfist/701d7fb7a19166ccc177c9541d88e07f to your computer and use it in GitHub Desktop.
Save misfist/701d7fb7a19166ccc177c9541d88e07f to your computer and use it in GitHub Desktop.
WordPress - Find first image in post content
<?php
function prefix_find_first_imamge( $post ) {
$content = $post->post_content;
$output = preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $content, $matches );
$first_img = $matches[1][0];
if( empty( $first_img ) ) {
return false;
}
return $first_img;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment