/ Published in: PHP
Removes wordpress auto
tags from content...additional line to clean curly quotes as well.`
Expand |
Embed | Plain Text
/* remove autoformatting - you can remove from comment_text as well, but whitespace there is a good thing */ remove_filter('the_content','wpautop'); // remove curly quotes remove_filter('comment_text','wptexturize'); remove_filter('the_title','wptexturize'); remove_filter('the_content','wptexturize');
You need to login to post a comment.
