在小部件中使用短代码

add_filter( 'widget_text', 'shortcode_unautop' );
add_filter( 'widget_text', 'do_shortcode' );enter code here

将其添加到插件或 functions.php 文件以在小部件中启用短代码。该代码首先停止 WordPress 将换行符转换为段落标记,然后让短代码解析小部件。两条线的顺序很重要。