wc_get_account_payment_methods_types()
Get My Account > Payment methods types
Hooks from the function
Returns
Array.
Usage
wc_get_account_payment_methods_types();
Changelog
| Since 2.6.0 | Introduced. |
wc_get_account_payment_methods_types() wc get account payment methods types code WC 10.6.2
function wc_get_account_payment_methods_types() {
return apply_filters(
'woocommerce_payment_methods_types',
array(
'cc' => __( 'Credit card', 'woocommerce' ),
'echeck' => __( 'eCheck', 'woocommerce' ),
)
);
}