Skip to content

Instantly share code, notes, and snippets.

@jakefentress
Created June 4, 2014 08:12
Show Gist options
  • Save jakefentress/fdc48cf09103aa276167 to your computer and use it in GitHub Desktop.
Save jakefentress/fdc48cf09103aa276167 to your computer and use it in GitHub Desktop.
Remove auto paragraphs in shortcodes in WordPress
// move wpautop filter to AFTER shortcode is processed - this is so shortcodes do not get processed
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop' , 99);
add_filter( 'the_content', 'shortcode_unautop',100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment