Skip to content

Instantly share code, notes, and snippets.

@freekrai
Created June 19, 2014 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freekrai/18c9845778b68766e0d4 to your computer and use it in GitHub Desktop.
Save freekrai/18c9845778b68766e0d4 to your computer and use it in GitHub Desktop.
call get_thumb_url
<?php
if(function_exists('has_post_thumbnail') && has_post_thumbnail()) {
the_post_thumbnail("loop-image");
}else{
$thumb=get_thumb_url($post->post_content, 'loop-image');
if ($thumb!='') {
?>
<img src="<?php echo $thumb; ?>" alt="<?php get_the_title(); ?>" />
<?php
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment