wc_get_order_type()
Get an order type by post type name.
No Hooks.
Returns
true|false|Array. Details about the order type.
Usage
wc_get_order_type( $type );
- $type(string) (required)
- Post type name.
wc_get_order_type() wc get order type code WC 10.5.0
function wc_get_order_type( $type ) {
global $wc_order_types;
if ( isset( $wc_order_types[ $type ] ) ) {
return $wc_order_types[ $type ];
}
return false;
}