减少Woocommerce中的产品长描述

时间:2018-06-02 03:03:58

标签: php wordpress woocommerce product hook-wordpress

我找到了以下代码from this answer thread,但它仅在产品标题下应用。那么如何应用于产品的详细描述。

add_action( 'woocommerce_after_shop_loop_item_title', 'shorten_product_excerpt', 35 );
function shorten_product_excerpt()
{
    global $post;
    $limit = 14;
    $text = $post->post_excerpt;
    if (str_word_count($text, 0) > $limit) {
        $arr = str_word_count($text, 2);
        $pos = array_keys($arr);
        $text = substr($text, 0, $pos[$limit]) . '...';
        // $text = force_balance_tags($text); // may be you dont need this…
    }
    echo '<span class="excerpt"><p>' . $text . '</p></span>';
}

1 个答案:

答案 0 :(得分:3)

在Woocommerce产品单页中,长描述显示在&#34;描述选项卡&#34;中。如果您查看single-product/tabs/description.php模板的源代码,它会使用the_content() wordpress函数来显示该长描述。

因此,您可以使用the_content专用的Wordpress过滤器来减少产品的长描述:

add_filter( 'the_content', 'shorten_product_long_descrition', 20 );
function shorten_product_long_descrition( $content ){
    // Only for single product pages
    if( ! is_product() ) return $content;

    // Set the limit of words
    $limit = 14;

    if (str_word_count($content, 0) > $limit) {
        $arr = str_word_count($content, 2);
        $pos = array_keys($arr);
        $text = '<p>' . substr($content, 0, $pos[$limit]) . '...</p>';
        $content = force_balance_tags($text); // needded
    }
    return $content;
}

代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。

<强>之前:

enter image description here

<强>后:

enter image description here

类似:Limit product short description length in Woocommerce