Remove Wordpress Update Notifications for All Users Except Admin

global $user_login; get_currentuserinfo(); if ($user_login !== "admin") { // change admin to the username that gets the updates add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) ); }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.