I am on Wordpress 4.1.1 and Woocommerce 2.3.3 and using this code but it's not working
$filters = array(
'post_status' => 'any',
'post_type' => 'shop_order',
'posts_per_page' => 200,
'paged' => 1,
'orderby' =>'modified',
'order' => 'ASC'
);
$loop = new WP_Query( $filters );
while ( $loop->have_posts() ) {
$loop->the_post();
$order = new WC_Order($loop->post->ID);
foreach ($order->get_items() as $key => $lineItem) {
print_r($lineItem);
}
}
After putting print_r($lineItem)
three properties are there out of which two are ever populated print_r($lineItem)
looks like this
Array (
[name] => Fouta Towel – Pearl Grey & White Stripe
[type] => line_item
[item_meta] =>
)
Can anyone help me in getting the remaining information about this order item, i.e product id, single / variable product etc.