mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://www.cssigniter.com/hide-the-wordpress-update-notifications-from-all-users-except-administrators
6 lines
235 B
Text
6 lines
235 B
Text
function hide_core_update_notifications_from_users() {
|
|
if ( ! current_user_can( 'update_core' ) ) {
|
|
remove_action( 'admin_notices', 'update_nag', 3 );
|
|
}
|
|
}
|
|
add_action( 'admin_head', 'hide_core_update_notifications_from_users', 1 );
|