【发布时间】:2022-01-21 13:28:07
【问题描述】:
我通过以下方式获得product:
$args = array(
'post_type' => 'product',
'posts_per_page' => 15,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $theCat
)
)
);
$post= new WP_Query( $args );
我想通过view 订购产品,所以我做了:
$args = array(
'post_type' => 'product',
'posts_per_page' => 15,
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => $theCat
)
),
'order' => 'ASC', // add this
'suppress_filters' => false, // add this
'orderby' => 'post_views' // add this
);
$post = new WP_Query( $args );
但仍然显示相同的结果,有什么想法吗?
【问题讨论】:
-
'post_views'是帖子元字段吗? -
@Mokhless 其实不确定,我认为是