Remove the payments method section from my account in WooCommerce

Remove the payments method section from my account in WooCommerce.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_account_menu_items', 'remove_payment_methods_my_account', 999 );
function remove_payment_methods_my_account( $items ) {
    unset( $items['payment-methods'] );
    return $items;
}