woocommerce_update_new_customer_past_orders آپدیت سفارش مشتری جدید

woocommerce_update_new_customer_past_orders آپدیت سفارش مشتری جدید

تابع ووکامرسی woocommerce_update_new_customer_past_orders – بروزرسانی سفارشات قبلی مشتری جدید

Syntax – سینتکس

woocommerce_update_new_customer_past_orders( $customer_id ); 

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

  • 1- $customer_id

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

if ( !function_exists( 'woocommerce_update_new_customer_past_orders' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-deprecated-functions.php'; 
} 
  
// The customer id. 
$customer_id = null; 
  
// NOTICE! Understand what this does before running. 
$result = woocommerce_update_new_customer_past_orders($customer_id); 
    

Defined – محل تعریف

/includes/wc-deprecated-functions.php

function woocommerce_update_new_customer_past_orders( $customer_id ) { 
    wc_deprecated_function( __FUNCTION__, '3.0', 'wc_update_new_customer_past_orders' ); 
    return wc_update_new_customer_past_orders( $customer_id ); 
} 

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