wc_get_order_type()
Get an order type by post type name.
No Hooks.
Return
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 9.4.2
function wc_get_order_type( $type ) { global $wc_order_types; if ( isset( $wc_order_types[ $type ] ) ) { return $wc_order_types[ $type ]; } return false; }