25% off ProSNIPC25OFF

Contact Form 7: Disable Automatic Paragraph Tags in Form Markup

Prevents Contact Form 7 from passing form content through wpautop and wptexturize, stopping unwanted <br> and <p> tags from being injected into the form HTML.

PHPby SnipCraft
php
<?php
if ( defined( 'WPCF7_VERSION' ) ) {
    /**
     * By default CF7 wraps form content with wptexturize() and wpautop(),
     * which can insert <br> and <p> tags that break custom form layouts.
     * Returning false from this filter disables that behaviour globally.
     */
    add_filter( 'wpcf7_autop_or_not', '__return_false' );
}
#autop#contact-form-7#formatting#forms#layout