Support

Account

Home Forums Front-end Issues Shortcode being wrapped with a paragaph tag Fix Reply To: Shortcode being wrapped with a paragaph tag Fix

  • Hi,

    Maybe you can try this solution:

    // Change the execution priority of wpautop so that it executes
    // after the shotcodes are processed instead of before
    remove_filter( 'the_content', 'wpautop' );
    add_filter( 'the_content', 'wpautop' , 12);