Skip to content

Instantly share code, notes, and snippets.

@bluvertigo
Created February 13, 2015 16:13
Show Gist options
  • Select an option

  • Save bluvertigo/17c5abcd5763b33f974a to your computer and use it in GitHub Desktop.

Select an option

Save bluvertigo/17c5abcd5763b33f974a to your computer and use it in GitHub Desktop.
Disabilitare autop e autobr / disable autop <p> <br/>
add_action( 'pre_get_posts', 'mfields_remove_autop_from_posts' );
function mfields_remove_autop_from_posts() {
if( is_page(3970) )
remove_filter( 'the_content', 'wpautop' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment