Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created September 14, 2014 16:15
Show Gist options
  • Save travismillerweb/cbb92b3b7682586dc8c8 to your computer and use it in GitHub Desktop.
Save travismillerweb/cbb92b3b7682586dc8c8 to your computer and use it in GitHub Desktop.
PHP - Remove Empty P Tags from WordPress
// Removes P Tags from the_content
// Reference Link: https://coderwall.com/p/vg-i0w
add_filter('the_content', 'remove_empty_p', 20, 1);
function remove_empty_p($content){
$content = force_balance_tags($content);
return preg_replace('#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment