Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created March 28, 2014 04:37
Show Gist options
  • Save dsebao/9825516 to your computer and use it in GitHub Desktop.
Save dsebao/9825516 to your computer and use it in GitHub Desktop.
Remove update notification in WP
<?php
add_action('admin_menu','wphidenag');
function wphidenag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment