Created
May 10, 2013 12:48
-
-
Save chrisrouse/5554213 to your computer and use it in GitHub Desktop.
Hides the WordPress version, making the site more secure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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