Created
February 13, 2015 16:13
-
-
Save bluvertigo/17c5abcd5763b33f974a to your computer and use it in GitHub Desktop.
Disabilitare autop e autobr / disable autop <p> <br/>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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