如果准备在某篇文章中不显示短代码,可以将下面代码添加到当前主题函数模板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
声明:本站的会员服务、主题插件等源码(具有可复制性,可传播性)属于虚拟商品内容服务,依据《消费者权益保护法》第二十五条规定一旦购买成功,不接受任何形式的退款、换货要求。
评论(0)