wc_get_account_payment_methods_types()WC 2.6.0

Get My Account > Payment methods types

Hooks from the function

Return

Array.

Usage

wc_get_account_payment_methods_types();

Changelog

Since 2.6.0 Introduced.

wc_get_account_payment_methods_types() code WC 8.6.1

function wc_get_account_payment_methods_types() {
	return apply_filters(
		'woocommerce_payment_methods_types',
		array(
			'cc'     => __( 'Credit card', 'woocommerce' ),
			'echeck' => __( 'eCheck', 'woocommerce' ),
		)
	);
}