Skip to content

Instantly share code, notes, and snippets.

@chrisrouse
Created May 10, 2013 12:48
Show Gist options
  • Save chrisrouse/5554213 to your computer and use it in GitHub Desktop.
Save chrisrouse/5554213 to your computer and use it in GitHub Desktop.
Hides the WordPress version, making the site more secure
// Remove the WP version for extra WordPress Secruty
function remove_wp_version(){
return '';
}
add_filter('the_generator', 'remove_wp_version');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment