我在此官方文档Subscription Function & Property Reference中找到了:
read+write
但这似乎不适合特定订阅?
当我尝试运行它时,我得到了一个致命错误无法传递的内容:
致命错误:未捕获错误:在不在对象上下文中时使用$ this C:\ XAMPP \ htdocs中\ mysite.com \可湿性粉剂内容\插件\ woocommerce-订阅\包括\类-WC-subscription.php:1413
我正在创建自己的插件,并从post表中选择WC_Subscription::get_related_orders( $return_fields, $order_type );
的所有订阅。我查看了" post status = wc-active
"," woocommerce_order_items
"和" woocommerce_order_itemmeta
"表格,但它们都没有提供获取用户购买订阅的相关订单的方法......
如果我只知道用户购买订阅及其相关订单的关系在哪里,那么我可以写一些sql,但我不知道,谷歌也不会产生任何结果。
有什么想法吗?
我的设置:
答案 0 :(得分:8)
已更新: 已添加WooCommerce版本3+兼容性
从订阅对象获取订单ID非常容易。我将像你一样选择所有订阅,其中 'post status' = 'wc-active'
来自帖子表。
// Get all customers subscriptions
$customer_subscriptions = get_posts( array(
'numberposts' => -1,
// 'meta_key' => '_customer_user',
// 'meta_value' => get_current_user_id(), // Or $user_id
'post_type' => 'shop_subscription', // WC orders post type
'post_status' => 'wc-active' // Only orders with status "completed"
) );
// Iterating through each post subscription object
foreach( $customer_subscriptions as $customer_subscription ){
// The subscription ID
$subscription_id = $customer_subscription->ID
// IMPORTANT HERE: Get an instance of the WC_Subscription Object
$subscription = new WC_Subscription( $subscription_id );
// Or also you can use
// wc_get_order( $subscription_id );
// Getting the related Order ID (added WC 3+ comaptibility)
$order_id = method_exists( $subscription, 'get_parent_id' ) ? $subscription->get_parent_id() : $subscription->order->id;
// Getting an instance of the related WC_Order Object (added WC 3+ comaptibility)
$order = method_exists( $subscription, 'get_parent' ) ? $subscription->get_parent() : $subscription->order;
// Optional (uncomment below): Displaying the WC_Subscription object raw data
// echo '<pre>';print_r($subscription);echo '</pre>';
}
您还可以在帖子查询中取消注释'meta_key'
和'meta_value'
数组行以获取一位客户的订阅...此代码经过测试并正常运行
最重要的是:
$subscription = new WC_Subscription($customer_subscription->ID);
...因为您将获得WC_Subscription对象,您可以在其中应用所有WC_Subscription方法而不会出现错误,例如:
$subscription = new WC_Subscription($post_id); $relared_orders_ids_array = $subscription->get_related_orders();