【发布时间】:2014-03-06 14:16:09
【问题描述】:
我希望能够从 the_content 中删除 wordpress 图库短代码,然后在循环之外再次使用该短代码。
我目前正在使用以下方法在 functions.php 中剥离短代码:
add_filter('the_content', 'strip_shortcodes');
然后在我的模板中的循环之外使用它:
<?php echo do_shortcode('[gallery"]'); ?>
这很好用,只是它会删除所有简码,包括我需要在帖子中使用的标题简码。
有没有人知道如何解决这个问题?
提前致谢。
【问题讨论】:
标签: wordpress gallery shortcode caption