Redirigir usuarios suscritos a otra página cuando se loguean

Añadimos en el functions.php del tema hijo el siguiente código:

/**
 * Redirect admin pages.
 *
 * Redirect specific admin page to another specific admin page.
 *
 * @return void
 * @author Michael Ecklund
 *
 */
add_action( 'admin_init', function () {

    global $pagenow;

    # Check current admin page.
    if ( $pagenow == 'profile.php' ) {

        $current_user = wp_get_current_user();

        if ( ! user_can( $current_user, "subscriber" ) ){// Check user object has not got subscriber role

        }else{
            wp_redirect( 'https://www.majoma.es/muestrario-privado/' );
            exit;   
        }

    }

} );