wc_get_order_type()
Get an order type by post type name.
Хуков нет.
Возвращает
true|false|Массив
. Details about the order type.
Использование
wc_get_order_type( $type );
- $type(строка) (обязательный)
- Post type name.
Код wc_get_order_type() wc get order type WC 9.8.2
function wc_get_order_type( $type ) { global $wc_order_types; if ( isset( $wc_order_types[ $type ] ) ) { return $wc_order_types[ $type ]; } return false; }