HEX
Server: Apache/2.4.49 (FreeBSD) OpenSSL/1.0.2s-freebsd PHP/5.6.36
System: FreeBSD hosting.icon.bg 11.3-RELEASE-p13 FreeBSD 11.3-RELEASE-p13 #0: Tue Sep 1 06:56:51 UTC 2020 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
User: ftpuser (1002)
PHP: 5.6.36
Disabled: NONE
Upload Files
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">&#47;</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>