File: /var/www/html/wp-content/themes/mobile/single.php
<?php get_header(); ?>
	  <?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>
        
      
      
      
        <div class="page-header">
          <h1><?php the_title(); ?></h1>
          <p><?php the_author() ?>发表于<?php the_time(__('Y/m/d H:i:s')) ?>  <?php if(function_exists('the_views')) { the_views(); } ?> <?php the_tags(); ?> </p>
          <p><span><?php the_category(',') ?></span>   <span><a href="<?php the_permalink(); ?>#pll-comment-here" target=_blank><?php comments_number('0个评论', '1个评论', '%个评论'); ?></a></p>
        </div>
        
        <?php
        $content=preg_replace('/(<img.*class=[\' | "])(.*[\' | "])/i', "$1 img-responsive $2",get_the_content());
		?>
        <p class="lead"><?php echo $content; ?></p>
    
      
      
      
      <p>
          <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
          // Both Comments and Pings are open ?>
          你可以<a href="#respond">发表评论</a>、<a href="<?php trackback_url(); ?>" rel="trackback">引用</a>到你的网站或博客,或通过<?php post_comments_feed_link('RSS 2.0'); ?>订阅这个日志的所有评论。
          <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
          // Only Pings are Open ?>
          留言已关闭,但你可以将这个日志<a href="<?php trackback_url(); ?> " rel="trackback">引用</a>到你的网站或博客。
          <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
          // Comments are open, Pings are not ?>
          通告目前不可用,你可以至底部留下评论。
          <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
          // Neither Comments, nor Pings are open ?>
          评论已关闭。
          <?php } ?>
      </p>
        <p><?php previous_post_link('<b>上一篇:</b>%link') ?></p>
        <p><?php next_post_link('<b>下一篇:</b>%link') ?></p>
      <?php comments_template(); ?> 
      <?php endwhile; ?>
      <?php else : ?>
	  <p>哦,你找的文章好像不在哦。</p>
	  <?php endif; ?>
      
   
<?php get_footer(); ?>