How to disable auto-p in WordPress?
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.