在WooCommerce中获取处理状态订单数量?

时间:2018-06-04 12:57:20

标签: php sql wordpress woocommerce orders

我想在WooCommerce中获取处理订单数量。我在Code Snippet插件中使用了以下代码,但这样做有效。

if( !function_exists( 'wc_processing_order_count' ) ) { 
    require_once '../plugins/woocommerce/includes/wc-order-functions.php'; 
}


// NOTICE! Understand what this does before running. 
$result = wc_processing_order_count(); 

它什么也没有回来。

4 个答案:

答案 0 :(得分:2)

此自定义函数使用非常轻的SQL查询来从特定状态获取订单数:

function get_orders_count_from_status( $status ){
    global $wpdb;

    // We add 'wc-' prefix when is missing from order staus
    $status = 'wc-' . str_replace('wc-', '', $status);

    return $wpdb->get_var("
        SELECT count(ID)  FROM {$wpdb->prefix}posts WHERE post_status LIKE '$status' AND `post_type` LIKE 'shop_order'
    ");
}

代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。

用法示例用于"处理"订单数:

// Display "processing" orders count
echo get_orders_count_from_status( "processing" );

答案 1 :(得分:1)

这种方法可以帮到你。订单存储为post_type shop_order。因此,通过创建查询以获取shop_order类型的所有帖子并通过传递参数来获取所有处理顺序,您将能够获得这些订单

    $args = array(
        'post_type'         => 'shop_order',
        'post_status'       => 'publish',
        'posts_per_page' => -1,
        'tax_query' => array(
                 array(
                     'taxonomy' => 'shop_order_status',
                     'field' => 'slug',
                     'terms' => array('processing')
                 )
         )
    );

    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ){ 
        $loop->the_post();
        $order_id = $loop->post->ID;
        $order = new WC_Order($order_id);
   }

答案 2 :(得分:0)

对于简单的事情,以上两个答案都太复杂了。

最简单的方法是:)

$processing_orders_count = count(wc_get_orders( array(
    'status' => 'processing',
    'return' => 'ids',
    'limit' => -1,
)));

答案 3 :(得分:-1)

看看:https://github.com/woocommerce/woocommerce/wiki/wc_get_orders-and-WC_Order_Query 这种引用确实在类似情况下对我有所帮助。 与使用其他答案中提到的使用硬编码查询或WP_Query相比,使用WC函数可确保您的代码更适合将来使用。