Skip to content

Instantly share code, notes, and snippets.

@VirtuBox
Forked from digisavvy/hide-admin-notices.php
Created January 30, 2019 07:07
Show Gist options
  • Save VirtuBox/5b733d67ea95d5e61ca6550da8f774fc to your computer and use it in GitHub Desktop.
Save VirtuBox/5b733d67ea95d5e61ca6550da8f774fc to your computer and use it in GitHub Desktop.
hide admin notices in WordPress.
add_action('admin_enqueue_scripts', 'ds_admin_theme_style');
add_action('login_enqueue_scripts', 'ds_admin_theme_style');
function ds_admin_theme_style() {
if (!current_user_can( 'manage_options' )) {
echo '<style>.update-nag, .updated, .error, .is-dismissible { display: none; }</style>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment