How to remove extra <p> in WordPress?

I am new to Wordpress and am currently developing a theme on it. I noticed that Wordpress is adding <p> tags throughout the page. Do you know any plugin or workaround to avoid this?

+4
source share
3 answers

Add this to your functions.php , this will give the result you are looking for:

 remove_filter('the_content', 'wpautop'); 
+14
source

Try this if you have html code in the $html_code variable

 $html_code = preg_replace('/<\/?p>/','', $html_code); 
+1
source

The WP Unformatted module will remove this filter by default.

0
source

Source: https://habr.com/ru/post/1313411/


All Articles