wc_get_account_payment_methods_columns()WC 2.6.0

Get My Account > Payment methods columns.

Return

Array.

Usage

wc_get_account_payment_methods_columns();

Changelog

Since 2.6.0 Introduced.

wc_get_account_payment_methods_columns() code WC 8.6.1

function wc_get_account_payment_methods_columns() {
	return apply_filters(
		'woocommerce_account_payment_methods_columns',
		array(
			'method'  => __( 'Method', 'woocommerce' ),
			'expires' => __( 'Expires', 'woocommerce' ),
			'actions' => ' ',
		)
	);
}