Skip to content

Instantly share code, notes, and snippets.

@LibertysYarn
Created October 21, 2013 20:22
Show Gist options
  • Save LibertysYarn/7090307 to your computer and use it in GitHub Desktop.
Save LibertysYarn/7090307 to your computer and use it in GitHub Desktop.
Get The First Image From a Post -- CSS-tricks
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches[1][0];
if(empty($first_img)) {
$first_img = "/path/to/default.png";
}
return $first_img;
}
if ( get_the_post_thumbnail($post_id) != '' ) {
echo '<a href="'; the_permalink(); echo '" class="thumbnail-wrapper">';
the_post_thumbnail();
echo '</a>';
} else {
echo '<a href="'; the_permalink(); echo '" class="thumbnail-wrapper">';
echo '<img src="';
echo catch_that_image();
echo '" alt="" />';
echo '</a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment