如何在简短的产品说明后显示快捷码的内容?

时间: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”]\');

相关推荐

Shortcode not being executed

我将以下代码放在WP“init”回调中(或加载插件时)。add_shortcode(\'my_shortcode\', function($atts, $content =\'\') { die(); } ); if (!shortcode_exists(\'my_shortcode\')) die(); 在我的页面中,我放入“[my_shortcode]“”当我查看页面时,我得到“****”知道我的代码怎么了吗?更