Skip to content

Instantly share code, notes, and snippets.

@PeteMall
Created January 21, 2012 01:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PeteMall/1650725 to your computer and use it in GitHub Desktop.
Save PeteMall/1650725 to your computer and use it in GitHub Desktop.
This is just the beginning
<?php
add_action( 'init', 'wp_honeybadger_it' );
function wp_honeybadger_it() {
remove_filter( 'the_content', 'capital_P_dangit', 11 );
remove_filter( 'the_title', 'capital_P_dangit', 11 );
remove_filter( 'comment_text', 'capital_P_dangit', 31 );
// more to come...
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment