如果准备在某篇文章中不显示短代码,可以将下面代码添加到当前主题函数模板functions.php中:
function remove_shortcode_from_index( $content ) {
if ( is_single( array( 123 ) ) ) {
$content = strip_shortcodes( $content );
}
return $content;
}
add_filter( 'the_content', 'remove_shortcode_from_index' );
修改其它中的数字123为文章ID
糖果博客,原文地址https://wpocn.com/4332.html© 版权声明
版权声明
1
本站名称:糖果博客
2
本站网址:wpocn.com
3
本网站的内容来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行删除处理。
4
本站一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
5
本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报。
6
本站附件资源、教程等内容如因时效原因失效或不可用,请评论区留言或联系站长及时更新。
THE END













暂无评论内容