wc_get_account_payment_methods_types()
Get My Account > Payment methods types
Description Description
Return Return
(array)
Source Source
File: includes/wc-account-functions.php
function wc_get_account_payment_methods_types() {
return apply_filters(
'woocommerce_payment_methods_types',
array(
'cc' => __( 'Credit card', 'woocommerce' ),
'echeck' => __( 'eCheck', 'woocommerce' ),
)
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |