تابع ووکامرسی wc_get_order_type دریافت نوع سفارش بر اساس نوع پست

تابع ووکامرسی wc_get_order_type دریافت نوع سفارش بر اساس نوع پست

تابع ووکامرسی wc_get_order_type – دریافت نوع سفارش بر اساس نوع پست

Syntax – سینتکس

(bool|array) wc_get_order_type( (string) $type ); 

Parameters – پارامتر ها (1)

  • 1- $type (string)

Returns – مقادیر بازگشتی (bool|array)

of datails about the order type

Usage – نحوه استفاده

if ( !function_exists( 'wc_get_order_type' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-order-functions.php'; 
} 
  
// post type name 
$type = ''; 
  
// NOTICE! Understand what this does before running. 
$result = wc_get_order_type($type); 
    

Defined – محل تعریف

/includes/wc-order-functions.php

function wc_get_order_type( $type ) { 
    global $wc_order_types; 
 
    if ( isset( $wc_order_types[ $type ] ) ) { 
        return $wc_order_types[ $type ]; 
    } else { 
        return false; 
    } 
} 

versions – نسخه ها

از نسخه : 3.0.2

نسخه فعلی : 3.0.6

دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2

ارسال نظر

جهت استفاده از کد حتما از تگ pre استفاده نمایید .

contact us