Skip to content

Instantly share code, notes, and snippets.

@tarikcayir
Created February 8, 2014 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarikcayir/8886898 to your computer and use it in GitHub Desktop.
Save tarikcayir/8886898 to your computer and use it in GitHub Desktop.
<?php
add_filter('the_content', 'remove_p_tags', 20, 1);
function remove_p_tags($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