您可以使用maximam进行wordpress摘录character 或word 计数和显示方式
Loriem ipsum[…]
所以我有了解决办法。
此代码输入function.php
/**
* The Excerpt for word counting in the_content or excerpt.
*/
function getCharCut($text, $limit)
{
$char_cut=substr(strip_tags(stripslashes($text)),0,$limit);
if(strlen($text)<=$limit)
return $char_cut;
else
return esc_html($char_cut." [...]");
}
您可以使用
excerpt 或
content 计数字符或单词。
<?php
if(get_the_excerpt())
{
$mycontent = get_the_excerpt();
echo getCharCut($mycontent, 105);
}
?>