{"id":15190,"date":"2024-11-15T14:30:42","date_gmt":"2024-11-15T22:30:42","guid":{"rendered":"https:\/\/codedcommerce.com\/?page_id=15190"},"modified":"2024-11-15T14:30:42","modified_gmt":"2024-11-15T22:30:42","slug":"admin-display-order-line-items","status":"publish","type":"woo-code","link":"https:\/\/codedcommerce.com\/woo\/admin-display-order-line-items\/","title":{"rendered":"Admin display order line items"},"content":{"rendered":"\n<pre class=\"wp-block-code language-php\"><code>add_action( 'admin_notices', function() {\n\n\t$order = wc_get_order( 12345 );\n\tforeach( $order->get_items() as $item_id => $item ) {\n\t\t$item_data = $item->get_data();\n\t\t$meta_datas = &#91;];\n\t\tforeach( $item->get_meta_data() as $meta ) {\n\t\t\t$meta_data = $meta->get_data();\n\t\t\t$meta_datas&#91;$meta_data&#91;'key']] = $meta_data&#91;'value'];\n\t\t}\n\t\t$product = $item->get_product();\n\t\t$output = &#91;\n\t\t\t'name' => $item->get_name(),\n\t\t\t'product_id' => $item->get_product_id(),\n\t\t\t'variation_id' => $item->get_variation_id(),\n\t\t\t'sku' => $product ? $product->get_sku() : '',\n\t\t\t'type' => $item->get_type(),\n\t\t\t'quantity' => $item->get_quantity(),\n\t\t\t'total' => $item->get_total(),\n\t\t\t'meta_data' => $meta_datas,\n\t\t];\n\t\tprintf( '&lt;pre>%s&lt;\/pre>', print_r( $output, true ) );\n\t}\n\n} );<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-15190","woo-code","type-woo-code","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code\/15190","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code"}],"about":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/types\/woo-code"}],"wp:attachment":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/media?parent=15190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}