如何限制Woocommerce产品描述中的图像?

时间:2019-07-16 06:38:21

标签: php woocommerce product hook-woocommerce

我想限制Woocommerce产品详细描述中的图像。我已经从该答案线程中找到了以下代码,但它仅用于限制文本。如何限制描述中的图片?有什么办法吗?

Reduce product long description in Woocommerce

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

}

0 个答案:

没有答案