这段代码似乎只影响字母而不是单词。如何更改它以计算我的摘录中的单词而不是字母?我还想在摘录的末尾加上“......”。
add_filter('woocommerce_short_description', 'reigel_woocommerce_short_description', 0, 15);
function reigel_woocommerce_short_description($post_excerpt){
if (!is_product()) {
$post_excerpt = substr($post_excerpt, 0, 200);
}
return $post_excerpt;
}