当前位置 : 李杰的流水账 > 技术 > linux

怎么让WordPress首页显示文章摘要,而不是把文章内容全显示出来

WordPress的功能很强大,可以根据自己的需求来修改自己的网站。 在Wordpress 3.5.1的中提供了默认的主题Twenty Twelve,首页显示的是全文信息,会让首页变的很大,那么怎么去让首页显示文章的摘要呢? 到wordpress后台,依次选择 外观-->编辑-->选择右边的index.php文件,在里面可以看到语句 <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> 可以看出,index.php是嵌套一个 content.php 的文件用于专门显示文章的内容,这就是为什么在首页老是显示文章全文。那么,打开content.php文件找到 <?php the_content( __( 'Continue reading <span>&rarr;</span>', 'twentyeleven' ) ); ?> 将它修改为 <?php if(!is_single()) { the_excerpt(); } else { the_content(__('(more…)')); } ?> 现在,首页是不是干净很多啦

内容列表