تابع ووکامرسی wc_update_order بروزرسانی سفارش فروشگاه
تابع ووکامرسی wc_update_order – بروزرسانی سفارش فروشگاه
Syntax – سینتکس
(string) wc_update_order( (array) $args );
Parameters – پارامتر ها (1)
- 1- $args (array)
Returns – مقادیر بازگشتی (string)
| WC_Order
Usage – نحوه استفاده
if ( !function_exists( 'wc_update_order' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-core-functions.php'; } // The args. $args = array(); // NOTICE! Understand what this does before running. $result = wc_update_order($args);
Defined – محل تعریف
/includes/wc-core-functions.php
function wc_update_order( $args ) { if ( ! $args['order_id'] ) { return new WP_Error( __( 'Invalid order ID.', woocommerce ) ); } return wc_create_order( $args ); }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر