Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WenLiangTseng/6051649 to your computer and use it in GitHub Desktop.
Save WenLiangTseng/6051649 to your computer and use it in GitHub Desktop.
移除Wordpress自己加上去的p tag
<?php
function simonbattersby_shortcode_format($content){
$content = preg_replace('/(<p>)\s*(<div)/','<div',$content);
$content = preg_replace('/(<\/div>)\s*(<\/p>)/', '</div>', $content);
return $content;
}
add_filter('the_content','simonbattersby_shortcode_format',11);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment