Woocommerce摘录的“阅读更多”或“ ...”按钮

时间:2019-01-03 22:45:12

标签: woocommerce maxlength

我在这里看到了一些代码来限制摘录产品在列表页面中的长度,但是使用“ ...”的代码却给出了错误,因为在页面循环的顶部,它还显示了一个'...'

是否还可以使用“更多”按钮或“ ...”来限制商店或类别页面中描述的长度。

先谢谢你 Attached image of the problem

我使用的代码:

add_filter('woocommerce_short_description', 'limit_product_short_description', 10, 1);

function limit_product_short_description($post_excerpt)
 {
    if (!is_product()) 
    {
         $pieces = explode(" ", $post_excerpt);
         $post_excerpt = implode(" ", array_splice($pieces, 0, 14));
     }
   return $post_excerpt.'...';
 }

0 个答案:

没有答案