Last active
May 15, 2021 20:05
-
-
Save tehmachine/4d58efe3aeca6d61c2eefefb126d640f to your computer and use it in GitHub Desktop.
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
<?php | |
/** | |
* Prevent Worpress from publicly displaying version number | |
* in <head>, rss feed, and everywhere else | |
*/ | |
function wp_remove_version() { | |
return ''; | |
} | |
add_filter('the_generator', 'wp_remove_version'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment