Skip to content

Instantly share code, notes, and snippets.

@jonschr
Created January 25, 2019 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonschr/849c307e09b50aeaa260ece42e2d14f5 to your computer and use it in GitHub Desktop.
Save jonschr/849c307e09b50aeaa260ece42e2d14f5 to your computer and use it in GitHub Desktop.
Remove the wpautop filter
/**
* Remove the wpautop filter from the_content
*/
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', function ($content) {
if (has_blocks()) {
return $content;
}
return wpautop($content);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment