Woocommerceの注文IDから製品IDを取得する
2 回答
- 投票
-
- 2013-04-25
WooCommerce 3.0+
注文の注文アイテムは
で入手できます$order = wc_get_order( $order_id ); $items = $order->get_items();
次に、アイテムをループすると、関連するすべてのデータを取得できます.
foreach ( $items as $item ) { $product_name = $item->get_name(); $product_id = $item->get_product_id(); $product_variation_id = $item->get_variation_id(); }
管理者注文ページがデータを取得する方法を確認することをお勧めします.そこには多くの回答があります!
Pre-WooCommerce 3.0
$order = new WC_Order( $order_id ); $items = $order->get_items(); foreach ( $items as $item ) { $product_name = $item['name']; $product_id = $item['product_id']; $product_variation_id = $item['variation_id']; }
WooCommerce 3.0+
you can get the order items of an order by
$order = wc_get_order( $order_id ); $items = $order->get_items();
then if you loop through the items, you can get all the relevant data:
foreach ( $items as $item ) { $product_name = $item->get_name(); $product_id = $item->get_product_id(); $product_variation_id = $item->get_variation_id(); }
a good tip is to check how the admin order pages get the data, you'll find many answers there!
Pre-WooCommerce 3.0
$order = new WC_Order( $order_id ); $items = $order->get_items(); foreach ( $items as $item ) { $product_name = $item['name']; $product_id = $item['product_id']; $product_variation_id = $item['variation_id']; }
-
何かが足りない場合を除いて、これはWooCommerceの最新バージョンでは機能しないようです...Unless I'm missing something, this doesn't appear to work in the latest version of WooCommerce...
- 0
- 2015-11-09
- rnevius
-
私にとってはWooCommerce2.4.8でも引き続き機能しますが、$ order_id変数を定義する必要があります(コンテキストによっては、$ order->idにある場合もあります).Still works in WooCommerce 2.4.8 for me, but you need to have the $order_id variable defined (sometimes it's in $order->id, depending on your context).
- 0
- 2015-11-10
- Ewout
-
@mevius複数の商品をチェックするためのディスパッチ機能を備えた3+の編集を追加しました@mevius i added an edit for 3+ with a dispatch function for checking multiple products
- 0
- 2017-10-20
- Garet Claborn
-
ディスパッチャの編集履歴を参照してください.サーバーを無意味に消費するため、ディスパッチャがないと適切ではありません.see edit history for dispatcher, this is not good without it as it will eat up your server pointlessly
- 0
- 2017-11-22
- Garet Claborn
-
@GaretClabornは、このデータで何をしているかに完全に依存します.「現状のまま」、このサンプルスニペットは決してメモリを浪費しません.@GaretClaborn that depends entirely on what you're doing with this data. 'as is', this example snippet is not wasteful of memory in any way.
- 0
- 2017-11-27
- Ewout
-
複数の製品をチェックしている場合は、ループの最初の実行を利用できるのではなく、かなりのロジックを繰り返しています.If you are checking multiple products then you're repeating quite a bit of logic vs being able to capitalize on the first run of the loop
- 0
- 2017-12-19
- Garet Claborn
-
- 2013-04-25
私はそれに取り組み、何かを達成しました.他の開発者と共有したいと思います.これは好ましい方法ではありませんが、知識のために回答を投稿しています.
global $wpdb; $result = $wpdb->get_results('select t1.order_item_id, t2.* FROM wp_woocommerce_order_items as t1 JOIN wp_woocommerce_order_itemmeta as t2 ON t1.order_item_id = t2.order_item_id where t1.order_id='.$order->ID); echo '<pre>'; print_r($result); echo '</pre>';
希望は誰かを助けるでしょう.
さらに:
複数のウェブサイトや移行などで問題が発生しないように、ワードプレスのテーブルプレフィックスを使用することをお勧めします.
global $wpdb; $table_name = $wpdb->prefix . 'table_name';
I worked on it and achieved something. That I would like to share to other developers. This is not preferred way to do it, but for knowledge I am posting my answer.
global $wpdb; $result = $wpdb->get_results('select t1.order_item_id, t2.* FROM wp_woocommerce_order_items as t1 JOIN wp_woocommerce_order_itemmeta as t2 ON t1.order_item_id = t2.order_item_id where t1.order_id='.$order->ID); echo '<pre>'; print_r($result); echo '</pre>';
hope will help someone.
Additionally:
Better to use wordpress table prefix to avoid problems in multiple website or in migration etc.
global $wpdb; $table_name = $wpdb->prefix . 'table_name';
-
@ErenorPazありがとう、コメントへの返信として、回答にコンテンツを追加しました:)@ErenorPaz Thanks, I added content in answer, in reply to your comment :)
- 1
- 2016-10-25
- arslaan ejaz
-
古いスレッドでも迅速な対応をありがとうございます!以前のコメントは古くなったので削除します:)Thank you for the fast response, even on an old thread! I'll delete my previous comments, since it's outdated now :)
- 0
- 2016-10-25
- Erenor Paz
Woocommerceの商品の詳細と注文の詳細の関係に問題があります.Woocommerceテーマの View Orders ページで関連する注文IDの製品IDを見つけることができません.注文の表示ページで商品のコンテンツやパーマリンクなどを取得したいだけです.
wp_postmeta
で検索しようとしましたが、うまくいきませんでした.