WordPress指定文章中不显示短代码的方法

如果准备在某篇文章中不显示短代码,可以将下面代码添加到当前主题函数模板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。

👋 感谢您的观看!

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享