Skip to content

Instantly share code, notes, and snippets.

@erichuang2015
Forked from digisavvy/hide-admin-notices.php
Created February 11, 2019 00:24
Show Gist options
  • Save erichuang2015/500032c48be7497c2ad51a1a9405cea7 to your computer and use it in GitHub Desktop.
Save erichuang2015/500032c48be7497c2ad51a1a9405cea7 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