Shortcode rendering as text not as shortcode should

前端 未结 3 1339
渐次进展
渐次进展 2021-01-25 09:53

I am building a shopping website and I am trying to put a shortcode in that will show the customer a buy button and the quantity of the product the customer wants to purchase. O

3条回答
  •  野性不改
    2021-01-25 10:32

    Add this to your functions.php

    // Allow shortcodes on widgets
    add_filter('widget_text','do_shortcode');
    
    // Allow shortcodes on pages (not tested, but should work)
    add_filter('the_content','do_shortcode');
    

提交回复
热议问题