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
. is tha posible?
try this one….
It disable automatic
<p>
and<br />
in specificpost
andcostume post type
.You can use
is_tax()
to check if you are displaying the taxonomy archive page and only remove the filters if it does not returntrue
.