A-A+ Wordpress 显示摘要而不是全部内容 2008年12月02日 WordPress 暂无评论 阅读 1 次 在网上搜索了一下,干脆帖在这里: 修改index.php,找到<?php the_content(); ?>这一行,将其修改为以下代码: <?php if(is_category() || is_archive() || is_home() ) { the_excerpt(); } else { the_content(’Read the rest of this entry »’); } ?>