我找到了以下代码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>';
}
答案 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文件中。经过测试和工作。
<强>之前:强>
<强>后:强>