我制作了一个带有自定义api端点的自定义插件。
我想访问我的可预订产品的可用性时间,以便可以将API与React前端一起使用。
到目前为止,我具有将我的自定义端点附加到的功能:
function get_data() {
$args = array( 'limit' => 1, 'type' => 'booking', );
$products = wc_get_products( $args );
return $products;
}
当我在邮递员中致电终点时,我得到的是:
为什么availability_rules
的数组为空,为什么woocommerce wc_get_product()
函数没有返回有关可预订产品的其他详细信息,我该如何解决?