禁止WordPress短代码中自动格式化的教程

用于去掉短代码中多余的p标签等。

方法一:

remove_filter('the_content', 'wpautop');
add_filter('the_content', 'wpautop', 99);
add_filter('the_content', 'shortcode_unautop', 100);

方法二:

if( !function_exists('fix_shortcodes') ) {
  function fix_shortcodes($content){   
    $array = array (
      '<p>[' => '[', 
      ']</p>' => ']', 
      ']<br />' => ']'
    );
    $content = strtr($content, $array);
    return $content;
  }
  add_filter('the_content', 'fix_shortcodes');
}

👋 感谢您的观看!

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