Mika MAtikainen
Apr 15, 2020 · 4 min read
How can I hide the WordPress update message that appears on the dashboard?
// Hide WordPress Update
function wpsc_wp_hide_update() {
remove_action('admin_notices', 'update_nag', 3);
}
add_action('admin_menu','wpsc_wp_hide_update');