Skip to content

Instantly share code, notes, and snippets.

@jasontucker
Created November 6, 2012 20:19
Show Gist options
  • Select an option

  • Save jasontucker/4027246 to your computer and use it in GitHub Desktop.

Select an option

Save jasontucker/4027246 to your computer and use it in GitHub Desktop.
Remove generator WordPress version number from pages and feeds
//Simply paste the code snippet below in your functions.php file:
add_filter('the_generator', 'digwp_complete_version_removal');
function digwp_complete_version_removal() {
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment