gpt4 book ai didi

php - 在 Woocommerce 中获取具有特定产品属性的产品购买总数

转载 作者:行者123 更新时间:2023-11-29 07:31:32 30 4
gpt4 key购买 nike

我正在使用 WooCommerce 创建一个自定义报告,它正在运行,但它正在使用大量资源,并且它需要更大,并且如果我增加它的大小就会超时。我确信有更好的方法可以做到这一点。

我正在运行多个查询以查看订购了多少特定颜色和尺寸的产品。目前,这些是单独的查询并且效率不高。这是我的代码:

这是获取订购数量的函数:

function get_order_by_product_id($product_id, $product_color, $product_size) {
$args = array (
'limit' => '-1',
'status' => 'processing',
);
$orders = wc_get_orders( $args );
if($orders) :
$total = 0;
foreach( $orders as $order) :
$order_id = $order->get_id();
$single_order = wc_get_order( $order_id );

foreach ($single_order->get_items() as $item_id => $item_data) :
$product = $item_data->get_product();
$productID = $single_order->get_item_meta($item_id, '_product_id', true);
$product_name = $product->get_name();
$color = $single_order->get_item_meta($item_id, 'pa_colors', true);
$size = $single_order->get_item_meta($item_id, 'pa_sizes', true);
$item_quantity = $item_data->get_quantity();

if($productID == $product_id && $color == $product_color && $size == $product_size ) :
$total += $item_quantity;
endif;

endforeach;
endforeach;
echo $total;
endif;
}

这是对函数的调用:

get_order_by_product_id(47652, 'black', 'xs');

目前,为了完成这项工作,我为每个产品 ID、颜色和尺寸一遍又一遍地调用该函数。正如我所说,它可以工作,但是会占用大量资源。

任何提高效率的想法都将不胜感激!

最佳答案

这可以使用以下函数在简单的轻量级 SQL 查询中完成:

/*
* @param (int) $product_id
* @param (string) $colors slug term for "pa_colors" product attribute
* @param (string) $sizes slug term for "pa_sizes" product attribute
* @param (string) $status Optional: Order status ("processing" by default)
**/
function get_ordered_product_count( $product_id, $colors, $sizes, $status='processing' ){
return $wpdb->get_var( "
SELECT SUM(woim.meta_value)
FROM {$wpdb->prefix}posts as p
INNER JOIN {$wpdb->prefix}woocommerce_order_items as woi ON p.ID = woi.order_id
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta as woim ON woi.order_item_id = woim.order_item_id
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta as woim1 ON woi.order_item_id = woim1.order_item_id
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta as woim2 ON woi.order_item_id = woim2.order_item_id
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta as woim3 ON woi.order_item_id = woim3.order_item_id
WHERE p.post_type LIKE 'shop_order'
AND p.post_status LIKE 'wc-$status'
AND woim.meta_key LIKE '_qty'
AND woim1.meta_key LIKE 'pa_colors'
AND woim1.meta_value LIKE '$colors'
AND woim2.meta_key LIKE 'pa_sizes'
AND woim2.meta_value LIKE '$sizes'
AND woim3.meta_key LIKE '_product_id'
AND woim3.meta_value = $product_id
" );
}

代码进入事件子主题(或事件主题)的 function.php 文件。经过测试并有效。

用法示例:

  • 对于“处理中”订单状态:get_ordered_product_count(47652, 'black', 'xs');
  • 对于特定订单状态:get_ordered_product_count(47652, 'black', 'xs', 'completed');

关于php - 在 Woocommerce 中获取具有特定产品属性的产品购买总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51035097/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com