获取Woocommerce订单的自定义字段数

时间:2018-01-07 17:50:11

标签: php sql wordpress woocommerce custom-fields

您好我正在研究woocommerce

我在Woocommerce中为订单添加了自定义字段,这是每个订单与代理分配的代理商名称。

我想获取代理商名称及其总订单数量。

我已经创建了自定义小部件并且它运行良好,只是每次都会发出代理名称。我只需要一次代理商名称及其总数。

以下是我尝试的代码:

function wc_orders_dashboard_widget_function() {
    $args   = array(
            'meta_key'          =>'_wc_acof_2',
            'post_type'         => 'shop_order',
            'post_status'       => 'All',
            'posts_per_page'    => 5 
          );
    $orders = get_posts( $args );

    if( count( $orders ) > 0 ) {
        ?>      
        <table width="100%" class="vao_orders_table">
            <tr>
                <th><?php _e( 'Agent Name', 'woocommerce' ); ?></th>
                <th><?php _e( 'Order Count', 'woocommerce' ); ?></th>
            </tr>
        <?php       
        foreach ( $orders as $key => $value ) {

            ?>
            <tr>
                <td>
                <?php

                $order   =   new WC_Order( $value->ID );

                $order_id = $order->get_order_number();

                $agent_name = get_post_meta( $order_id, '_wc_acof_2', true );

                // 1. Get the order ID and its link
                if ( $agent_name ) {                
                    echo $agent_name;
                ?>
                </td>               
                <td>                

                <?php
                    // 2. Get status of the order
                    $order_count += wp_count_posts($value->post_type );
                    echo $order_count;
                }
                ?>
                </td>               

            </tr>
            <?php           
        }

        ?></table><?php

        // 4. Adding All orders link which will redirect to Orders page of WooCommerce
        printf( '<div id="vao_orders"><span class="dashicons dashicons-cart"></span> <a href="%s">' . __( 'View all orders' ) . '</a></div>', admin_url( 'edit.php?post_type=shop_order' ) );       
    }else{
        // If no orders then display No Orders message
        echo __( 'No Orders.' );
    }
}

但它会显示如下输出:

代理商名称订单数量
Agent1 1
Agent1 2
Agent2 3
Agent1 4

我的预期输出:

代理商名称订单数量
Agent1 3
Agent2 1

你能帮帮我吗?我缺少什么?

1 个答案:

答案 0 :(得分:1)

这可以通过一个非常简单的SQL查询来完成,这将简化您的功能:

function wc_orders_dashboard_widget_function() {
    global $wpdb;
    $domain = 'woocommerce';

    // The SQL query
    $results = $wpdb->get_results( "
        SELECT meta_value as value, count(meta_value) as count
        FROM {$wpdb->prefix}postmeta
        WHERE meta_key LIKE '_wc_acof_2'
        GROUP BY meta_value
        ORDER BY meta_value
    " );

    if( count( $results ) > 0 ):
        ?>      
        <table width="100%" class="vao_orders_table">
            <tr>
                <th><?php _e( 'Agent Name', $domain ); ?></th>
                <th><?php _e( 'Order Count', $domain ); ?></th>
            </tr>
        <?php foreach ( $results as $result ): ?>
            <tr>
                <td><?php echo $result->value; ?></td>               
                <td><?php echo $result->count; ?></td>
            </tr>
        <?php endforeach; ?>
        </table>
        <?php

        // 4. Adding All orders link which will redirect to Orders page of WooCommerce
        printf( '<div id="vao_orders">
            <span class="dashicons dashicons-cart"></span> <a href="%s">%s</a>
        </div>', admin_url( 'edit.php?post_type=shop_order' ), __( 'View all orders', $domain ) );       
    else:
        // If no orders then display No Orders message
        echo __( 'No Orders.', $domain );
    endif;
}

代码放在活动子主题(或活动主题)的function.php文件中。

经过测试和工作。