更改从字母到单词的摘录长度 - Woocommerce

时间:2016-02-29 10:31:09

标签: php html css wordpress woocommerce

这段代码似乎只影响字母而不是单词。如何更改它以计算我的摘录中的单词而不是字母?我还想在摘录的末尾加上“......”。

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;
}

0 个答案:

没有答案