Skip to content

Instantly share code, notes, and snippets.

@crewstyle
Last active April 20, 2016 08:18
Show Gist options
  • Save crewstyle/66f617b40b8bf9db22c69a205cb5fb23 to your computer and use it in GitHub Desktop.
Save crewstyle/66f617b40b8bf9db22c69a205cb5fb23 to your computer and use it in GitHub Desktop.
WordPress ~ Remove WordPress version in head HTML tag - #frontend #security #optimisation
<?php
//Remove WordPress version.
//<meta name="generator" content="WordPress __WP_VERSION__" />
remove_action('wp_head', 'wp_generator');
/**
* Remove WordPress generator info.
*
* @see https://github.com/crewstyle/clean-wordpress
*/
add_filter('the_generator', '_cw_remove_version');
function _cw_remove_version()
{
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment