Skip to content

Instantly share code, notes, and snippets.

@gdeguglielmo
Created April 24, 2014 13:05
Show Gist options
  • Save gdeguglielmo/11253923 to your computer and use it in GitHub Desktop.
Save gdeguglielmo/11253923 to your computer and use it in GitHub Desktop.
Remove WordPress empty paragraph
function working_remove_empty_p($content) {
$array = array (
'<p>[' => '[',
']</p>' => ']',
']<br />' => ']',
']<br />' => ']'
);
$content = strtr($content, $array);
return $content;
}
add_filter('the_content', 'working_remove_empty_p', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment