I need to get post_id in wordpress from woocommerce order id or order number.
global $woocommerce, $post;
$order = new WC_Order($post->ID);
//to escape # from order id
$order_id = trim(str_replace('#', '', $order->get_order_number()));
with this code i am getting order id from post id. I have to reverse this and get post id from order id.
you do realize that an order may contain 1 or more post id right?
$order = new WC_Order( $order_id );
$items = $order->get_items();
foreach ( $items as $item ) {
//$product_name = $item['name'];
//$product_id = $item['product_id']; // post id
//$product_variation_id = $item['variation_id'];
}
Have you tried this?
$post_id = get_post($order_id)->ID;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With