Return to Snippet

Revision: 28187
at July 3, 2010 03:15 by scribbleitdesigns


Initial Code
/* 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');

Initial URL


Initial Description
Removes wordpress auto <p> tags from content...additional line to clean curly quotes as well.`

Initial Title
Remove wordpress auto formatting

Initial Tags
wordpress

Initial Language
PHP