Skip to content

Instantly share code, notes, and snippets.

@leavlzi
Last active November 18, 2017 16:58
Show Gist options
  • Save leavlzi/6ac08e13ef9923459ee545636f118b03 to your computer and use it in GitHub Desktop.
Save leavlzi/6ac08e13ef9923459ee545636f118b03 to your computer and use it in GitHub Desktop.
/*-------------------------------------------
Remove wpautop only for custom post types
-------------------------------------------*/
function wpc_remove_autop_for_posttype( $content )
{
'newsletter' === get_post_type() && remove_filter( 'the_content', 'wpautop' );
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment