Следующий код будет считать заказы по статусу для текущего идентификатора менеджера по работе с клиентами, соответствующего полю ACF "handlowiec":
Таким образом, вам нужно будет присвоить каждому заказу идентификатор менеджера по работе с клиентами:
Код функции с очень легким SQL-запросом (на основе wp_count_posts()
функция WordPress) :
function display_woocommerce_order_count( $atts, $content = null ) {
$args = shortcode_atts( array(
'status' => 'completed, processing, on-hold, cancelled',
'handlowiec' => ''
), $atts );
// Formatting the order statuses for the SQL query
$statuses = $data = [];
$statuses_array = array_map( 'trim', explode( ',', $args['status'] ) );
foreach ( $statuses_array as $status ) {
if ( 0 !== strpos( $status, 'wc-' ) )
$statuses[] = 'wc-' . $status;
}
$statuses = implode("','", $statuses);
## -- 1. The SQL Query -- ##
global $wpdb;
$handlowiec_query = $join_postmeta = $output = '';
// Handling the Account Manager ID (optionally)
if( $args['handlowiec'] !== '' ){
$join_postmeta = "INNER JOIN {$wpdb->prefix}postmeta pm ON p.ID = pm.post_id";
$handlowiec_query = "AND meta_key like 'handlowiec' AND meta_value = ";
$handlowiec_query .= $args['handlowiec'];
}
$results = $wpdb->get_results("
SELECT post_status, COUNT( * ) AS num_posts
FROM {$wpdb->prefix}posts as p
$join_postmeta
WHERE post_type = 'shop_order'
AND post_status IN ('$statuses')
$handlowiec_query
GROUP BY post_status
");
## -- 2. Formatting the Output -- ##
// Loop through each order status count
foreach($results as $result){
$status = str_replace( 'wc-', '', $result->post_status );
$orders_count = (int) $result->num_posts;
if( $orders_count > 0 )
$data[] = ucfirst($status) . ' ' . _n( 'order', 'orders', $orders_count ) . ': ' . $orders_count;
}
if( $args['handlowiec'] !== '' )
$output = 'Account Manager ID ' . $args['handlowiec'] . ' | ';
else
$output = 'All Account Managers | ';
if( sizeof($data) > 0 )
$output .= implode( ' | ', $data );
else
$output .= 'No results';
return '<p>' . $output . '</p>';
}
add_shortcode( 'wc_order_count', 'display_woocommerce_order_count' );
Код помещается в файл function.php вашей активной дочерней темы (или активной темы). Проверено и работает.
ИСПОЛЬЗОВАНИЕ:
1) Без «идентификатора менеджера аккаунта» (для всех менеджеров):
echo do_shortcode("[wc_order_count]");
Вы получите что-то вроде:
All Account Managers | On-hold orders: 2 | Processing orders: 7 | …
2) С определенным «идентификатором менеджера аккаунта»:
echo do_shortcode("[wc_order_count handlowiec='5']");
Вы получите что-то вроде:
Account Manager ID 5 | On-hold order: 1 | Processing orders: 3 | …
Вы также можете использовать как и прежде status
аргумент, чтобы указать, какой статус ордеров будет задействован в выводе ...