Remove unwanted notices from the Dashboard

Remove unwanted notices from the Dashboard

Can’t stand seeing all those invitations to sign up for newsletters or become PROs in your Dashboard? Add this to your functions.php:
add_action( 'in_admin_header', function () {

    global $wp_filter;

    if ( ! isset( $wp_filter['admin_notices'] ) ) {
        return;
    }

    foreach ( $wp_filter['admin_notices']->callbacks as $priority => $callbacks ) {

        // Le notice core stanno quasi sempre con priorità basse
        if ( $priority >= 10 ) {
            unset( $wp_filter['admin_notices']->callbacks[ $priority ] );
        }
    }

}, 999 );

Free my space. Get out! Now.