通过使用函数执行以下操作:
recent_comment_text_more($comment_content)
该函数如下所示(如果您使用的是PHP,则部分代码看起来来自另一种语言):
function recent_comment_text_more($comment_content, $more_href) {
if (strlen($comment_content) > 180) {
$comment_content = substr($comment_content, 0, 177) . sprintf(\'<a href="%s">... (more)</a>\', $more_href);
}
return $comment_content;
}
祝你好运!
function recent_comment_text_more($comment_content, $more_href) {
if (mb_strlen($comment_content) > 180) {
$comment_content = mb_substr($comment_content, 0, 177) . sprintf(\'<a href="%s">... (more)</a>\', $more_href);
}
return $comment_content;
}