Wordpress按自定义类别获取发布订单

时间:2014-12-22 12:40:46

标签: wordpress categories custom-post-type

我正在定制帖子。我如何按自定义类别订购它们。我的自定义类别名称是“周”。 这些是我的算法。

$args = array(
                        'post_type' => $post_type,
                        'post_status' => 'publish',
                        'caller_get_posts' => 1,
                        'orderby' => 'title',
                        'order' => 'ASC',
                    );

我使用orderby'title'。但它没有用。

1 个答案:

答案 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',
                );