Get orders total purchases amount for the day in Woocommerce

后端 未结 2 1363
死守一世寂寞
死守一世寂寞 2020-12-01 20:37

For Woocommerce, I wrote code below, trying to get orders total purchases amount for today:

function order_total_woo_fahad(){

    // Get orders from people          


        
2条回答
  •  失恋的感觉
    2020-12-01 21:13

    get_results( "SELECT * FROM $wpdb->posts 
                WHERE post_type = 'shop_order'
                AND post_status IN ('{$post_status}')
                AND post_date BETWEEN '{$date_from}  00:00:00' AND '{$date_to} 23:59:59'
            ");
    
    echo "
    ";
    print_r($result);
    ?>
    

提交回复
热议问题