我在这里找到了一种在Woocommerce中更改简短说明摘录长度的有效方法:
Woocommerce Short Description Excerpt Length
我使用了以下代码:
add_filter('woocommerce_short_description','reigel_woocommerce_short_description', 10, 1);
function reigel_woocommerce_short_description($post_excerpt){
if (!is_product()) {
$post_excerpt = substr($post_excerpt, 0, 10);
}
return $post_excerpt;
}
我需要对单个产品页面底部显示的相关产品执行相同的操作。有什么需要添加代码以使其正常工作的吗?
非常感谢。