Skip to content

Instantly share code, notes, and snippets.

@mustafauysal
Created September 13, 2013 14:08
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mustafauysal/6551216 to your computer and use it in GitHub Desktop.
Save mustafauysal/6551216 to your computer and use it in GitHub Desktop.
please don't break me!
<?php
add_filter('the_content', 'remove_br_tags');
function remove_br_tags($content) {
return preg_replace('/<br(\s+)?\/?>/i', "\n", $content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment