基本上,您需要更改帖子的默认摘录长度。
有几种方法可以解决此问题:
如果您不熟悉PHP,请在以下位置安装此插件:http://wordpress.org/plugins/advanced-excerpt/
这将允许您更改管理面板中的摘录长度。
如果您熟悉基本PHP,请转到您的函数。php在您的主题中位于/wp-content/themes/your\\u-theme\\u-NAME/functions。php
添加以下代码:
function different_excerpt_length($length) {
return 200;
}
add_filter(\'excerpt_length\', \'different_excerpt_length\');
你可以把200改成你想要的任何数字,比如300。
至于显示摘要而不是全文,您可以按照wordpress的说明进行操作。com类似于:http://en.support.wordpress.com/splitting-content/more-tag/
希望有帮助!