wordpress首页摘要设置

默认wordpress首页显示的是全部文章,不过习惯应该是首页显示摘要

1 修改主题下边的index.php文件
<?php the_content(__(’(more…)’)); ?> 
可能不是和上边完全一样,自己看下

修改为:

    <?php if(!is_single()) {

     the_excerpt();

     } else {

     the_content(__(‘(more…)’));

  } ?>

七里香相关文章

1 Comment so far

  1. Dragon on 一月 27th, 2011

    3版以上的程式並無這段可以修改
    此方式僅適用舊版本

Leave a reply