我做了一个插件,所以我可以有自定义的端点。最终,我想获取有关我的可预订产品(woocommerce预订)的数据。
这是我的插件:
if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins',
get_option( 'active_plugins' ) ) ) ) {
// Define constants.
define( 'CUSTOM_ENDPOINTS_PLUGIN_VERSION', '1.0.0' );
define( 'CUSTOM_ENDPOINTS_PLUGIN_DIR', __FILE__ );
// Include the main class.
require plugin_dir_path( __FILE__ ) . '/class-rest-custom-woocommerce-endpoints.php';
}
然后在我的主类文件中:
add_action( 'woocommerce_loaded', 'get_data');
add_action( 'rest_api_init', 'custom_endpoint_first');
function custom_endpoint_first(){
register_rest_route( 'cwe/v1/booking', '/get-data',
array(
'methods' => 'GET',
'callback' => 'get_data')
);
}
function get_data() {
$args = array( 'include' => array(28));
$products = wc_get_products( $args );
return $products;
}
我不知道为什么它返回一个空数组,但是当我调用自定义URL时,它的状态为200。
答案 0 :(得分:1)
使用此代码段获取JSON产品。
public function get_products()
{
$p = wc_get_products(array('status' => 'publish'));
$products = array();
foreach ($p as $product) {
$products[] = $product->get_data();
}
return new WP_REST_Response($products, 200);
}
答案 1 :(得分:0)
此行
'include' => array(28)
表示您只会获得ID为28的产品。
该产品存在吗?
那是你的意图吗?
如果没有,请查看此链接以获取一些示例
https://github.com/woocommerce/woocommerce/wiki/wc_get_products-and-WC_Product_Query#usage