我想这可以通过消除这个条件来解决你的问题if ( preg_match(\'/<!--more(.*?)?-->/\', $post->post_content) ) {
不确定,但试试看
在摘录后添加阅读更多内容。
add_filter(\'the_excerpt\',\'openstrap_excerpt\');
function openstrap_excerpt(){
global $post;
$link=\'<span class="readmore"><a href="\'.get_permalink().\'" > read more →</a></span>\';
$excerpt=get_the_excerpt();
echo $excerpt.$link;
}
以下代码将摘录的长度限制为20个单词
function openstrap_custom_excerpt_length($length) {
return 85;
}
add_filter(\'excerpt_length\', \'openstrap_custom_excerpt_length\');
我不知道为什么要使用第三个函数/过滤器,而且可能不是必需的