因此,我找到了一个“解决方案”,尽管它没有我所希望的那么好,或者至少没有3.0之前的好。
$iOrderID = $_POST[\'iOrderID\'];
$aBookingQuery = new WP_Query(
array(
\'post_parent\' => (int)$iOrderID,
\'post_type\' => \'wc_booking\',
\'posts_per_page\' => 1
)
);
= $aBookingQuery->posts[0]->ID;
$iBookingRessoureceID = get_post_meta($iBookingID)[\'_booking_resource_id\'][0];
这将为您提供所述预订产品的ressource ID。