Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created February 17, 2015 08:17
Show Gist options
  • Save schalkburger/a1253c414db4dd84c3da to your computer and use it in GitHub Desktop.
Save schalkburger/a1253c414db4dd84c3da to your computer and use it in GitHub Desktop.
Wordpress category featured image thumbnail
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail())) : ?>
<?php the_post_thumbnail('thumbnail'); ?>
<?php else :?>
<img src="<?php bloginfo('template_directory');?>/img/<?php $category = get_the_category(); echo $category[0]->cat_name; ?>.jpg" />
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment