gpt4 book ai didi

mysql - SQL 查询在 WooCommerce 中按标签选择产品?

转载 作者:行者123 更新时间:2023-11-30 01:02:05 28 4
gpt4 key购买 nike

我有一个 WooCommerce 商店,其中的产品被标记为智能手机或平板电脑。我正在寻找一种从数据库中选择所有智能手机的方法,所以有人知道原始 SQL 查询来按标签选择所有 WooCommerce 产品吗?

最佳答案

这将使用 native WordPress 查询为您提供所需的结果。然后你可以使用循环遍历结果:

// Define Query Arguments
$args = array(
'post_type' => 'product',
'product_tag' => $tags
);

// Create the new query
$loop = new WP_Query( $args );
// Get products number
$product_count = $loop->post_count;

// If results
if( $product_count > 0 ) :
// Start the loop
while ( $loop->have_posts() ) : $loop->the_post(); global $product;

/** Do stuff here **/

endwhile;

else :
_e('No product matching your criteria.');
endif; // endif $product_count > 0

信用归Remi Corson对于这个解决方案。

关于mysql - SQL 查询在 WooCommerce 中按标签选择产品?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20030161/

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