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

WPOCN WordPress教程评论28阅读模式

用于去掉短代码中多余的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');
}

文章末尾固定信息

weinxin
我的微信
我的微信
微信扫一扫
 
WPOCN
  • 本文由 WPOCN 发表于 2022年11月23日14:42:10
  • 转载请务必保留本文链接:https://www.tghello.com/4333.html

发表评论