通常,如果设置自定义摘录,它会显示该摘录的全文。在这种情况下,长度受到PHP函数的限制mb_substr
最多180个字符shop_dec_len
选项设置为。这告诉我,您可以修改mb_substr
或者在管理员的某个地方有一个选项,您甚至不需要更改代码。要直接修改它,可以执行以下操作:
<?php if ($post->post_excerpt && $post->post_excerpt != "") echo \'<div itemprop="description" class="desc">\' . mb_substr ( strip_tags($post->post_excerpt), 0, 100 ) . $len . \'</div>\'; ?>
要以不同的方式修剪摘录,您可以查看
[trim_word()][2]
这是有人写的一个简洁的函数,用于修剪而不打断文字:
/**
* trims text to a space then adds ellipses if desired
* @param string $input text to trim
* @param int $length in characters to trim to
* @param bool $ellipses if ellipses (...) are to be added
* @param bool $strip_html if html tags are to be stripped
* @return string
*/
function trim_text($input, $length, $ellipses = true, $strip_html = true) {
//strip tags, if desired
if ($strip_html) {
$input = strip_tags($input);
}
//no need to trim, already shorter than trim length
if (strlen($input) <= $length) {
return $input;
}
//find last space within length
$last_space = strrpos(substr($input, 0, $length), \' \');
$trimmed_text = substr($input, 0, $last_space);
//add ellipses (...)
if ($ellipses) {
$trimmed_text .= \'...\';
}
return $trimmed_text;
}
所以这可能看起来像:
<?php if ($post->post_excerpt && $post->post_excerpt != "") echo \'<div itemprop="description" class="desc">\' . trim_words( $post->post_excerpt, 100, false, true ) . $len . \'</div>\'; ?>