Enable shortcodes in a wordpress theme

前端 未结 2 1276
一生所求
一生所求 2020-12-13 22:05

I develop a new theme for wordpress 3.3.1 from scratch and shortcodes are not working on it. As I searched until now it is a matter of filtering the content containing the s

2条回答
  •  时光取名叫无心
    2020-12-13 22:28

    To execute a single shortcode, run it with

    echo do_shortcode('[your_short_code]');
    

    If the shortcode(s) are in the post content, make sure you're displaying it with

    
    

    Or

    
    

    Or

    post->post_content);?>
    

    The important thing is: if you aren't using the function "the_content()" you need this line post->post_content);?> where in the second argument you have to put the variable of the post content you want to show.

提交回复
热议问题