• puting this code in function.php

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

    It disable automatic <p> and <br /> tag insertion in page template.

    for example I have 3 page template which is index.php, single.php and taxonomy.php and all of that page template remove the automatic <p> and <br /> insertion, in my case, I want <p> and <br /> tag automatic in taxonomy.php

  • The topic ‘disable automatic tag insertion in specific template’ is closed to new replies.