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?
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?
Share Improve this question edited Jun 2, 2019 at 19:40 Tope Leye asked Jun 2, 2019 at 15:53 Tope LeyeTope Leye 112 bronze badges 1- 1 Possible duplicate of Remove Line Breaks From Cell Content in WordPress – Jacob Peattie Commented Jun 3, 2019 at 2:39
1 Answer
Reset to default 2In 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.