Skip to content

Instantly share code, notes, and snippets.

@UmeshSingla
Created June 7, 2013 12:51
Show Gist options
  • Save UmeshSingla/5729011 to your computer and use it in GitHub Desktop.
Save UmeshSingla/5729011 to your computer and use it in GitHub Desktop.
Wordpress- Remove Admin Notices
<?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