How to disable auto-p in WordPress?

I need to remove the "wpautop filter" from my WordPress Website because it is adding too many paragraphs. I'm new to WordPress. I don't know how to create Child themes. The name of my theme is the "supreme directory". is it also possible to remove the "wpautop filter" from the supreme directory theme directly?

Topic wp-autop Wordpress

Category Web


In your child theme's functions.php, try something like this:

remove_filter( 'the_content', 'wp_autop' );

Note that this may have unintended side-effects, and will definitely have an effect on how your content renders.

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.