Skip to content

Instantly share code, notes, and snippets.

@mahdiyazdani
Created October 16, 2016 17:44
Show Gist options
  • Save mahdiyazdani/8ea1c8a384e438c49126d0c58949d07a to your computer and use it in GitHub Desktop.
Save mahdiyazdani/8ea1c8a384e438c49126d0c58949d07a to your computer and use it in GitHub Desktop.
Hide the WordPress Update Message
<?php
// Hide WordPress Update
function my_hide_update() {
remove_action('admin_notices', 'update_nag', 3);
}
add_action('admin_menu','my_hide_update');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment