Remove wpautop from shortcode content / remove whitespace in buffering

I am using the Mailchimp plugin, and it has a shortcode that uses output buffering to grab its widget’s code and spit it out in the content.

However, the widget code has plenty of white space, so the_content filters are throwing useless linebreaks (like after hidden inputs) and empty p tags everywhere… rendering it unusable. I am removing the shortcode to add my own, but I’m not sure what to do to prevent the WordPress wpautop filter from going crazy. My initial thought was to strip out the whitespaces between HTML tags, but I don’t know how to go about doing that.

Read More

Ideally, the plugin would concatenate a string to return instead of using output buffering, but I don’t know if they’ll ever bother.

Related posts

Leave a Reply

3 comments

  1. You do not need a plugin to do this. Just add 3 lines of code to the end of the functions.php file in your active theme:

    remove_filter( 'the_content', 'wpautop' );
    add_filter( 'the_content', 'wpautop' , 99 );
    add_filter( 'the_content', 'shortcode_unautop', 100 );
    
  2. shea’s answer is a nice solution, but it turns off autop for all shortcodes which may not be desired.

    I wrote a script that allows you to run the following:

    include "shortcode-wpautop-control.php";
    chiedolabs_shortcode_wpautop_control(array('yourshortcode'));
    

    It allows you to turn off wpautop for specific shortcodes instead of all of them.

    Once again, I wrote the script. I don’t mean to self promote, but as I update it in the future, I will update it on GitHub, so it makes no sense to post the code here.

    You can see the script at Shortcode wp-autop control.

  3. There is a WordPress function available that does this job nicely. There isn’t any need to use a custom function or a plugin to do this.

    Just use the shortcode_unautop($pee) function to remove wpautop from shortcode content. Here $pee is the required string.