Skip to content

Instantly share code, notes, and snippets.

@jmdodd
Created August 12, 2011 20:37
Show Gist options
  • Save jmdodd/1142941 to your computer and use it in GitHub Desktop.
Save jmdodd/1142941 to your computer and use it in GitHub Desktop.
__return_empty_string() and use in filters
<?php
if ( ! function_exists( '__return_empty_string' ) ) {
function __return_empty_string() {
return '';
} }
add_filter( 'the_generator', '__return_empty_string' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment