Friday 20 May 2016

Remove WordPress adding <br/> and <p></p> tags

Put below code in function.php and  enjoy.... :)

<?php

function better_wpautop($pee){
return wpautop($pee,false);
}
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'better_wpautop' , 99);
add_filter( 'the_content', 'shortcode_unautop',100 );

?>

No comments:

Post a Comment