wc_get_order_type()WC 1.0

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() code WC 8.7.0

function wc_get_order_type( $type ) {
	global $wc_order_types;

	if ( isset( $wc_order_types[ $type ] ) ) {
		return $wc_order_types[ $type ];
	}

	return false;
}