View difference between Paste ID: BNb3qGJC and UmyL2Epn
SHOW: | | - or go back to the newest paste.
1-
<!-- Conditional thumbnail for categories -->
1+
<?php if ( is_search() || is_home() || is_category() || is_archive()  ) : // Display Excerpts for Search and Homepage ?>
2
		<div class="entry-summary">
3
			<!-- Conditional thumbnail for categories -->
4
<div class="excerpt-thumb">
5-
		<?php the_post_thumbnail('excerpt-thumbnail', 'class=alignleft'); ?>
5+
6
		<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
7
		<?php the_post_thumbnail('excerpt-thumbnail', 'class=alignright'); ?>
8
		</a>
9-
		<img class="alignleft" src="<?php echo get_stylesheet_directory_uri(); ?>/images/<?php $category = get_the_category(); echo $category[0]->slug; ?>.png" />
9+
10-
10+
11
		<img class="alignright" src="<?php echo get_stylesheet_directory_uri(); ?>/images/<?php $category = get_the_category(); echo $category[0]->slug; ?>.png" />
12-
</div>
12+
	</a>
13
	<?php endif;?>
14
</div>
15
			<?php the_excerpt(); ?>
16
		</div><!-- .entry-summary -->