Wordpress主题 twenty twelve修改首页文章摘要

方法:网站后台->外观->编辑->找到content.php文件

路径:wp-content/themes/twentytwelve/

找到这一句:

<?php if ( is_search() ) : // Only display excerpts for search. ?>

修改为

<?php if ( is_search() || is_category() || is_archive() || is_home()) : // Only display excerpts for search. ?>

保存删除缓存,刷新首页就可以显示摘要了。