Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Created January 11, 2017 05:55
Show Gist options
  • Save sudipbd/e5e1d0817f975d2c02f6245f97553e09 to your computer and use it in GitHub Desktop.
Save sudipbd/e5e1d0817f975d2c02f6245f97553e09 to your computer and use it in GitHub Desktop.
WordPress remove empty <p>
/**
* Remove empty paragraphs created by wpautop()
* @author Ryan Hamilton
* @link https://gist.github.com/Fantikerz/5557617
*/
function remove_empty_p( $content ) {
$content = force_balance_tags( $content );
$content = preg_replace( '#<p>\s*+(<br\s*/*>)?\s*</p>#i', '', $content );
$content = preg_replace( '~\s?<p>(\s|&nbsp;)+</p>\s?~', '', $content );
return $content;
}
add_filter('the_content', 'remove_empty_p', 20, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment