Categories :

Remove WordPress adding
and

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 );

?>

Leave a Reply

Your email address will not be published. Required fields are marked *