Change and Update WordPress Site URL Online Table prefix : Old URL : New URL : See here your Query… <html> <head> <script type=”text/javascript”> function […]
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 ); ?>