我正在定制帖子。我如何按自定义类别订购它们。我的自定义类别名称是“周”。 这些是我的算法。
$args = array(
'post_type' => $post_type,
'post_status' => 'publish',
'caller_get_posts' => 1,
'orderby' => 'title',
'order' => 'ASC',
);
我使用orderby'title'。但它没有用。
答案 0 :(得分:0)
$args = array(
'post_type' => $post_type,
'post_status' => 'publish',
'caller_get_posts' => 1,
'tax_query' => array(
array(
'taxonomy' => 'weeks',
),
),
'orderby' => 'post_title',
'order' => 'ASC',
);