Skip to content

Instantly share code, notes, and snippets.

@TeemuSuoranta
Created October 18, 2019 06:57
Show Gist options
  • Save TeemuSuoranta/16accb52a24f1f4dd0d22df701047d76 to your computer and use it in GitHub Desktop.
Save TeemuSuoranta/16accb52a24f1f4dd0d22df701047d76 to your computer and use it in GitHub Desktop.
Remove empty paragraphs from post_content
<?php
/**
* Remove empty paragraphs
*
* @param string $content the HTML markup of content
*
* @return string the HTML markup of content
*/
add_filter('the_content', function ($content) {
if (!is_admin()) {
$content = str_replace('<p></p>', '', $content);
$content = str_replace('<p>&nbsp;</p>', '', $content);
}
return $content;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment