Skip to content

Instantly share code, notes, and snippets.

@Glinkfr
Created March 31, 2019 15:50
Show Gist options
  • Save Glinkfr/1334fe31e3052fc4c7e6e7d2a1a4ded2 to your computer and use it in GitHub Desktop.
Save Glinkfr/1334fe31e3052fc4c7e6e7d2a1a4ded2 to your computer and use it in GitHub Desktop.
Changer le numero de version de WP en bas à droite de la partie admin
# change le numero de version de wp dans la partie admin
function change_footer_version() {
return 'Version 1.0.0';
}
add_filter( 'update_footer', 'change_footer_version', 9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment