Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created February 23, 2016 19:32
Show Gist options
  • Save alandbh/233a77fca16f357ddb22 to your computer and use it in GitHub Desktop.
Save alandbh/233a77fca16f357ddb22 to your computer and use it in GitHub Desktop.
Retira os parágrafos e quebras de linha automáticos dos conteúdos dos shortcodes removes auto paragraphs an BRs inside shortcodes
/*
RETIRA OS PARÁGRAFOS E <BR> NOS CONTEÚDOS DOS SHORTCODES
*/
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop' , 99);
add_filter( 'shortcode_unautop',100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment