Skip to content

Instantly share code, notes, and snippets.

@jimi008
Last active October 16, 2017 17:54
Show Gist options
  • Save jimi008/243f94c01b4cf4e3cfc13944ff85d0b3 to your computer and use it in GitHub Desktop.
Save jimi008/243f94c01b4cf4e3cfc13944ff85d0b3 to your computer and use it in GitHub Desktop.
Remove Wordpress version meta from page and RSS
<?php
// hide the meta tag generator from head and rss
function disable_version() {
return '';
}
add_filter('the_generator','disable_version');
remove_action('wp_head', 'wp_generator');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment