Skip to content

Instantly share code, notes, and snippets.

@webmasterninjay
Created March 29, 2015 20:40
Show Gist options
  • Save webmasterninjay/217fbcffc0586b1a6dbe to your computer and use it in GitHub Desktop.
Save webmasterninjay/217fbcffc0586b1a6dbe to your computer and use it in GitHub Desktop.
Wordpress: Remove auto p filter on custom post type
<?php
add_filter( 'the_content', 'jay_remove_autop', 0 );
function jay_remove_autop( $content ) {
// change 'post-type' to the custom post type
'post-type' === 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