File: /hosting/kak.bg/web/wp-content/themes/kak/content-excerpt.php
<?php
/**
* The template for displaying content in the archive and search results template
*
* @package WordPress
* @file content-excerpt.php
* @author FairPixels
* @link http://fairpixels.com
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h4 class="category_title"><a href="<?php echo get_category_link($category->cat_ID); ?>"><?php echo $category->name; ?></a></h4>
<?php
$feat_video = get_post_meta( $post->ID, 'fp_meta_post_video_code', true );
if ( has_post_thumbnail() ) { ?>
<div class="thumb overlay">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail( 'fp370_215' ); ?>
<img class="play" src='<?php echo get_stylesheet_directory_uri() ?>/images/play.png' />
</a>
</div>
<?php } ?>
<div class="entry-header">
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<div class="entry-meta">
<?php the_author_posts_link(); ?>
<?php $posttags = get_the_tags(); $count = 2; ?>
<?php if ($posttags): ?>
<?php foreach($posttags as $posttag): if ($count == 0) { break; }?>
<span class="sep">/</span>
<a class="tag" href="<?php echo get_tag_link($posttag->term_id); ?>"><?php echo $posttag->name; ?></a>
<?php $count--; endforeach; ?>
<?php endif; ?>
</div>
</div>
</article>