Saturday, 5 December 2015

How to Remove P and Br tags in WordPress posts?

Open functions.php in your current active theme.
Add following lines


remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

No comments:

Post a Comment