mkormendy
10/20/2015 - 3:33 PM

Hide the notification that appears when there is a new version of WordPress released

Hide the notification that appears when there is a new version of WordPress released

// Hide WordPress Update

function wp_hide_update() {

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

}

add_action('admin_menu','wp_hide_update');