该摘录的最大长度为55个单词,因此即使你试图将文本缩短到70个单词,the_excerpt()
将忽略该选项,只显示55个单词。
删除[...]
从read more标签中,只需查找the_content()
并将其替换为the_content(\'\',FALSE,\'\');
. 您还可以使用the_content(\'Read more...\');
在本例中,在“阅读更多”标记后显示文本Read more...
.
如果需要删除[...]
从摘录中,您可以在函数中执行此操作。php
function new_excerpt_more($more) {
global $post;
return \'\';
}
add_filter(\'excerpt_more\', \'new_excerpt_more\');
您还可以在
\'\'
如果你需要别的东西来展示