Skip to content

Instantly share code, notes, and snippets.

@dryan1144
Last active August 29, 2015 14:01
Show Gist options
  • Save dryan1144/910059a56ec2f3146ec6 to your computer and use it in GitHub Desktop.
Save dryan1144/910059a56ec2f3146ec6 to your computer and use it in GitHub Desktop.
Remove WP version from header
//Place in functions.php
//removes WP version from header
function healingartsweb_remove_version() {
return '';
}
add_filter('the_generator', 'healingartsweb_remove_version');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment