如何在简短的产品说明后显示快捷码的内容? 时间:2021-08-27 作者:Mr SKT 这是我的短代码:[mbv name=”product-info”]我想在WooCommerce Short Product Description我该怎么做? 2 个回复 最合适的回答,由SO网友:Mr SKT 整理而成 I got a solution from below codes:add_filter(\'woocommerce_short_description\', function ($description) { if (! is_product()) { return; } return $description.do_shortcode(\'[mbv name="product-info"]\'); }); SO网友:GGQa add this line:echo do_shortcode(\'[mbv name=”product-info”]\'); 文章导航