wc_get_account_payment_methods_columns()
Get My Account > Payment methods columns.
Hooks from the function
Returns
Array.
Usage
wc_get_account_payment_methods_columns();
Changelog
| Since 2.6.0 | Introduced. |
wc_get_account_payment_methods_columns() wc get account payment methods columns code WC 10.7.0
function wc_get_account_payment_methods_columns() {
return apply_filters(
'woocommerce_account_payment_methods_columns',
array(
'method' => __( 'Method', 'woocommerce' ),
'expires' => __( 'Expires', 'woocommerce' ),
'actions' => ' ',
)
);
}