Skip to content

Instantly share code, notes, and snippets.

@tehmachine
Last active May 15, 2021 20:05
Show Gist options
  • Save tehmachine/4d58efe3aeca6d61c2eefefb126d640f to your computer and use it in GitHub Desktop.
Save tehmachine/4d58efe3aeca6d61c2eefefb126d640f to your computer and use it in GitHub Desktop.
<?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