如果准备在某篇文章中不显示短代码,可以将下面代码添加到当前主题函数模板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
© 版权声明
本站均为WordPress英文原版主题和插件,无破解无授权,转载请保留原链接。
THE END
暂无评论内容