HEX
Server: Apache/2.4.6 (CentOS) PHP/5.6.39
System: Linux izj6c6ukj0hyugxsgmuxz3z 3.10.0-514.6.2.el7.x86_64 #1 SMP Thu Feb 23 03:04:39 UTC 2017 x86_64
User: root (0)
PHP: 5.6.39
Disabled: NONE
Upload Files
File: /web/data/blog.tbbbearing.com/wp-content/themes/fino/content-parts/content.php
<?php
/**
 * @package Fino
 */
?>
    <div class="blog-detail">

        <div class="post-img">
            <?php if(has_post_thumbnail()) : ?>
               <?php the_post_thumbnail('fino-page-thumbnail', array('class' => 'img-responsive')); ?>
            <?php endif; ?>
        </div>
        <div class="blog-detail-content">
            <h3><a class="h3" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                <ul class="post-detail-meta">
                    <li>
                        <i class="fa fa-calendar"></i> <span><?php echo get_the_date(); ?></span> 
                    </li>
                    <li><?php echo esc_html__( 'By', 'fino' ); ?><i>:</i>
                        <a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>">
                        <i class="fa fa-user"></i><?php the_author(); ?>
                        </a>
                    </li>
                    <li>
                        <span>
                            <i class="fa fa-comment"></i><?php comments_number( __('0 Comment', 'fino'), 
                            __('1 Comment', 'fino'), __('% Comments', 'fino') ); ?> 
                         </span>
                    </li>
                    <li>
                        <a>
                           <i class="fa fa-folder-open"></i><?php the_category(',&nbsp; &nbsp;'); ?>
                        </a>
                    </li>
                </ul>
            <div class="para">
            <?php the_excerpt(); ?>
            </div>
        </div>
    </div>