我想限制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;
}