我使用的主题对短信有字符数限制,并在字符数限制的末尾显示。
我想删除它,所以我搜索the_excerpt();
并替换为the_content();
问题可以用正常的内容解决,但图像发布类型仍然存在问题,并且<?php the_excerpt(); ?>
当我更改此设置时,我的短信功能就像完整的发布一样,并且与发布的长度无关。
我尝试打开主题中的所有PHP文件,并查找诸如:限制,长度,摘录等关键字,以查找定义短消息长度的代码,甚至在所有文件和语言中搜索“ [...]”,但我不知道那是哪里来的。
但是我发现的只是其中的一些代码行 function.php
if ( ! function_exists( 'string_limit_words' ) ) :
function string_limit_words($str, $limit = 18 , $need_end = false) {
$words = explode(' ', $str, ($limit + 1));
if(count($words) > $limit) {
array_pop($words);
array_push($words,'...');
}
return implode(' ', $words);
}
endif;
当我增加18时,什么都没有改变!
我必须寻找什么代码?