woocommerce_order_type_to_group
Convert a type to a types group.
Использование
add_filter( 'woocommerce_order_type_to_group', 'wp_kama_woocommerce_order_type_to_group_filter' );
/**
* Function for `woocommerce_order_type_to_group` filter-hook.
*
* @param string $type type to lookup.
*
* @return string
*/
function wp_kama_woocommerce_order_type_to_group_filter( $type ){
// filter...
return $type;
}
- $type(строка)
- type to lookup.
Где вызывается хук
woocommerce_order_type_to_group
woocommerce/includes/abstracts/abstract-wc-order.php 899-902
$type_to_group = apply_filters( 'woocommerce_order_type_to_group', $this->item_types_to_group );