Change WordPress version in admin footer


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function change_footer_version() {
  2. return 'Version 1.0.0';
  3. }
  4. add_filter( 'update_footer', 'change_footer_version', 9999 );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.