Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created March 2, 2014 19:53
Show Gist options
  • Save DrewAPicture/9312801 to your computer and use it in GitHub Desktop.
Save DrewAPicture/9312801 to your computer and use it in GitHub Desktop.
<?php
remove_filter( 'the_content', 'wpautop' );
$content = wpautop( $content, false );
echo apply_filters( 'the_content', $content );
add_filter( 'the_content', 'wpautop' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment