php 自定义WC REST API v2订单号

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 自定义WC REST API v2订单号相关的知识,希望对你有一定的参考价值。

<?php 

// the code below goes in your functions.php file

function my_custom_prepare_shop_order_object($response, $order, $request) {
  $data = $response->get_data();
  if( function_exists('wc_seq_order_number_pro') ) {
    $data['number'] = wc_seq_order_number_pro()->find_order_by_order_number( $data['id'] );
  }
  $response->set_data($data);
  return $response;
}

add_filter( 'woocommerce_rest_prepare_shop_order_object', 'my_custom_prepare_shop_order_object', 20, 3 );

以上是关于php 自定义WC REST API v2订单号的主要内容,如果未能解决你的问题,请参考以下文章

php 更改WC REST API v2输出的产品regular_price

PayPal REST API 订单摘要 自定义描述

WooCommerce REST API v2:如何处理付款?

php 使Cost of Goods插件与WC REST API兼容

WooCommerce REST API - 检索订单属性(尺寸/颜色)

贝宝 Rest API SDK v2