remove tags from the_content

By default, WordPress adds paragraph

tags to category descriptions. Stop this by adding the following to your functions.php file

// Remove p tags from category description
remove_filter('term_description','wpautop');

Simple and easy (codeless).

Thank you

Leave a Comment