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-single.php
<?php   

/* For Single page Results
*/

?>
    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        <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><?php the_title(); ?></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>

              <?php if (has_tag()) : ?>
              <li>
                <i class="fa fa-tag"></i>
                <?php echo esc_html__(' ', 'fino' ); ?><?php the_tags('&nbsp;'); ?>
              </li>     
              <?php endif; ?>
          </ul>
          <div class="para">
              <?php the_content(); ?>
                <?php
                    wp_link_pages( array(
                   'before' => '<div class="page-links">' . esc_html__('Pages: ', 'fino' ),
                    'after'  => '</div>',
                     ) );
                ?>
          </div>   

        
       </div> 

  <?php 
              if ( comments_open() || get_comments_number() ) :
                comments_template();
              endif; 
          ?> 	   
    </div>