如何在页面或类别循环中显示产品时在 woocommerce 中为产品标题添加摘录

How to add excerpt in woocommerce for product title while displaying products in a page or category loop

页面中显示的产品列表出现问题 http://bubblz.in/test-2/ 第一行中的产品名称将影响第二行中的产品。 任何人都知道如何解决这个问题,还有关于添加产品名称长度摘录的想法吗?

在functions.php中添加此代码

add_filter('the_title', 'single_product_page_title', 10, 2);

function single_product_page_title($title, $id) {
    if(is_product_category() || is_page() ) {                
        $title = mb_strimwidth($title, 0, 15, '...');
        return $title;
    }

    return $title;
}