Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何将短代码放入自定义小部件中。我不知道如何添加编辑器,因此将呈现短代码而不仅仅是显示代码。即前端的[事件]?我在小部件中创建了 textarea 但 textarea 不运行短代码?
在将其添加到您的 functions.php 时,您可以使用文本或自定义 HTML 小部件:
add_filter( 'widget_text', 'do_shortcode' );
在小部件运行槽过滤器中显示文本之前
$formatted_content = apply_filters('the_content', $your_content);