1.如果是自己使用的话就用more标签,写文章时加入
2.也可以修改一下主题的
打开你使用的theme中的index.php,查找
[code]<?php the_content(__(‘(more…)’)); ?>[/code]
或
[code]<?php the_content(); ?>[/code]
修改为
[code]<?php if(!is_single()) {
the_excerpt();
} else {
the_content(__(‘(more…)’));
} ?>[/code]