我拼命地試圖以編程方式獲取與WooCommerce訂閱對象相關聯的帖子ID。我從用戶標識開始,嘗試使用get_posts函數請求數據庫。使用get_users_subscriptions
的呼叫有效,但返回的對象不包括它們的ID
,僅包含關聯的order_id
或product_id
。如何獲得與Woocommerce訂閱相關的帖子ID
$subscriptions = WC_Subscriptions_Manager::get_users_subscriptions(
$current_user->ID
);
$subscription_posts = get_posts(array(
'orderby' => 'date',
'order' => 'ASC',
'numberposts' => 1,
'meta_key' => '_customer_user',
'meta_value' => $current_user->ID,
'post_type' => 'shop_subscription'
));
get_post
請求可悲地返回一個空數組。我的請求中有錯嗎?
由於提前,