For Woocommerce, I wrote code below, trying to get orders total purchases amount for today:
function order_total_woo_fahad(){ // Get orders from people
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); ?>
"; print_r($result); ?>