Skip to content

Instantly share code, notes, and snippets.

@vc27
Last active October 2, 2015 12:59
Show Gist options
  • Save vc27/a2c149095b5835c3052c to your computer and use it in GitHub Desktop.
Save vc27/a2c149095b5835c3052c to your computer and use it in GitHub Desktop.
for those projects that have a bazillion plugin notices taking up 2x pagefold
/**
* hide_all_notices
* @since 1.2
**/
add_action( 'admin_head', 'hide_all_notices' );
function hide_all_notices() {
$user = wp_get_current_user();
if ( $user->user_login == 'randyhicks' ) { // get rid of the damn things!!!!
echo "<style>.notice, .error, .update-nag { display:none; }</style>";
}
} // end function hide_all_notices
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment