Skip to content

Instantly share code, notes, and snippets.

@janspants11
Created December 9, 2016 15:41
Show Gist options
  • Select an option

  • Save janspants11/c456ba628c962f3afe0098b147839ad9 to your computer and use it in GitHub Desktop.

Select an option

Save janspants11/c456ba628c962f3afe0098b147839ad9 to your computer and use it in GitHub Desktop.
Unhook WP notifcations
<?php
function _remove_admin_notifications() {
remove_all_actions( 'admin_notices' );
}
add_action( 'admin_init', '_remove_admin_notifications', 9999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment