Created
September 13, 2013 14:08
-
-
Save mustafauysal/6551216 to your computer and use it in GitHub Desktop.
please don't break me!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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