Skip to content

Instantly share code, notes, and snippets.

@andrewlaskey
Created June 5, 2014 00:06
Show Gist options
  • Save andrewlaskey/c6b4ea902d52aeb6f098 to your computer and use it in GitHub Desktop.
Save andrewlaskey/c6b4ea902d52aeb6f098 to your computer and use it in GitHub Desktop.
Remove Wordpress auto paragraph tags only on pages not posts
<?php
add_filter('the_content', 'specific_no_wpautop', 9);
function specific_no_wpautop($content) {
global $post;
if (is_page()) { // or whatever other condition you like
remove_filter( 'the_content', 'wpautop' );
return $content;
} else {
return $content;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment