Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save douglasanro/d30097faec3c33378725007fc8f1153f to your computer and use it in GitHub Desktop.
Save douglasanro/d30097faec3c33378725007fc8f1153f to your computer and use it in GitHub Desktop.
Remove WordPress version from header
<?php
/* ----------------------------------------------------------------------------
* Remove WordPress version from header
* ------------------------------------------------------------------------- */
function simple_remove_version_info() {
return '';
}
add_filter( 'the_generator', 'simple_remove_version_info' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment