disable automatic tag insertion in specific template
-
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
andtaxonomy.php
and all of that page template remove the automatic<p>
and<br />
insertion, in my case, I want<p>
and<br />
tag automatic intaxonomy.php
- The topic ‘disable automatic tag insertion in specific template’ is closed to new replies.