Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created April 12, 2014 22:27
Show Gist options
  • Save ovizii/10559919 to your computer and use it in GitHub Desktop.
Save ovizii/10559919 to your computer and use it in GitHub Desktop.
Stop tripping line breaks
function clear_br($content){
return str_replace("<br />","<br clear='none'/>", $content);
}
add_filter('the_content', 'clear_br');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment