Skip to content

Instantly share code, notes, and snippets.

@adapicom
Created May 30, 2013 21:00
Show Gist options
  • Save adapicom/5681209 to your computer and use it in GitHub Desktop.
Save adapicom/5681209 to your computer and use it in GitHub Desktop.
Add this to your functions.php file to strip all mentioning of the Wordpress version.
/* REMOVE WORDPRESS VERSION TEXT */
function wpbeginner_remove_version() {
return ''; }
add_filter('the_generator', 'wpbeginner_remove_version');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment