WordPress修改文章列表显示摘要


分类: Web前端 实验室   604人阅读  评论(0)  收藏  举报

用WordPress 3.8开的个人博客longt.me,在主页,分类页,搜索页时均为全文,文章多了效果不太好,查了一下官方文档,修改为首页显示摘要,具体方法如下:

进入外观-〉编辑,选择content.php,将下面代码:

  1. if ( is_search() ) : ?>  
  2.     class="entry-summary">  
  3.           
  4.     
  
  •     else : ?>  
  •     class="entry-content">  
  •         
  •             the_content( __( 'Continue reading ''twentyfourteen' ) );  
  •             wp_link_pages( array(  
  •                 'before'      => '' . __( 'Pages:''twentyfourteen' ) . '',  
  •                 'after'       => '
  • ',  
  •                 'link_before' => '',  
  •                 'link_after'  => '',  
  •             ) );  
  •         ?>  
  •     
  •   
  •     endif; ?>  


  • 替换为:

    1. if ( is_single() ) : // Only display full content for Single page ?>  
    2.     class="entry-content">  
    3.         
    4.             the_content( __( 'Continue reading ''twentyfourteen' ) );  
    5.             wp_link_pages( array(  
    6.                 'before'      => '' . __( 'Pages:''twentyfourteen' ) . '',  
    7.                 'after'       => '
    ',  
  •                 'link_before' => '',  
  •                 'link_after'  => '',  
  •             ) );  
  •         ?>  
  •     
  •   
  •     else : ?>  
  •     class="entry-summary">  
  •           
  •     
  •   
  •     endif; ?>  
  • 你可能感兴趣的:(wordpress)