woocommerce_credit_card_type_labels
Использование
add_filter( 'woocommerce_credit_card_type_labels', 'wp_kama_woocommerce_credit_card_type_labels_filter' );
/**
* Function for `woocommerce_credit_card_type_labels` filter-hook.
*
* @param $array
*
* @return
*/
function wp_kama_woocommerce_credit_card_type_labels_filter( $array ){
// filter...
return $array;
}
- $array
- -
Где вызывается хук
woocommerce_credit_card_type_labels
woocommerce/includes/wc-core-functions.php 1619-1630
$labels = apply_filters( 'woocommerce_credit_card_type_labels', array( 'mastercard' => _x( 'MasterCard', 'Name of credit card', 'woocommerce' ), 'visa' => _x( 'Visa', 'Name of credit card', 'woocommerce' ), 'discover' => _x( 'Discover', 'Name of credit card', 'woocommerce' ), 'american express' => _x( 'American Express', 'Name of credit card', 'woocommerce' ), 'cartes bancaires' => _x( 'Cartes Bancaires', 'Name of credit card', 'woocommerce' ), 'diners' => _x( 'Diners', 'Name of credit card', 'woocommerce' ), 'jcb' => _x( 'JCB', 'Name of credit card', 'woocommerce' ), ) );