我的查询不是使用orderby
参数订购我的帖子。
一点背景:
我在一个foreach语句中,循环通过“类别”ID的自定义分类。在那个foreach语句中,我试图调用一个新的WP_Query从该foreach循环的每个“类别”获取帖子。我的args数组如下:
$args = array(
'post_type' => 'wpsc-product',
'post_status' => 'publish',
'showposts' => -1,
'tax_query' => array(
array(
'taxonomy' => 'wpsc_product_category',
'field' => 'term_id',
'terms' => $cat_id,
),
array(
'taxonomy' => 'series',
'field' => 'slug',
'terms' => $series_name
)
),
'orderby' => 'title',
'order' => 'DESC'
);
$cat_id
和$series_name
都是此post_type中自定义分类法的数组。
orderby
和order
根本无法正常工作,我无法弄清楚原因。
答案 0 :(得分:11)
我已在测试博客上检查了您的代码。它按预期工作。所以参数
'orderby' => 'title',
'order' => 'DESC'
您已正确设置。
在这种情况下,您可以检查SQL请求。
$query = new WP_Query($args);
var_dump($query->request);