小编C. *_*ood的帖子

在自定义 wp_query 循环中按价格订购产品

我目前有一个非常简单的 wp_query 循环来循环我的 WooCommerce 产品,如下所示:

$args = array(
    'posts_per_page' => -1,
    'product_cat' => $cat,
    'post_type' => 'product',
    'orderby' =>  'price',
    'order' => 'DESC'
);

$the_query = new WP_Query( $args );

while ( $the_query->have_posts() ) {
   $the_query->the_post();
     wc_get_template_part( 'content', 'product' );
}
Run Code Online (Sandbox Code Playgroud)

这可以按我的意愿工作,但我无法按产品价格(升序或降序)订购产品 - 我需要做什么才能使其正常工作?

php wordpress woocommerce

2
推荐指数
1
解决办法
6838
查看次数

标签 统计

php ×1

woocommerce ×1

wordpress ×1