HIDE NAG ADMIN

PHOTO EMBED

Sun Jan 14 2024 11:22:39 GMT+0000 (Coordinated Universal Time)

Saved by @brozool

// Hide update notifications for non-admin users

function hide_update_notifications() {

    if ( ! current_user_can( 'manage_options' ) ) {

        remove_action( 'admin_notices', 'update_nag', 3 );

    }

}

add_action( 'admin_head', 'hide_update_notifications' );

​
content_copyCOPY