我有一个taxonomy-tools.php页面,显示(在url mysite.com/post-type/custom-taxonomy)该自定义分类法中的所有帖子,仅使用简单循环(如果有帖子...等)。
我正在寻找一种按字母顺序对这些结果进行排序并显示超过10个帖子的方法。
我尝试使用query_posts,但是我得到了该帖子类型的所有结果,而不仅仅是分类法。
答案 0 :(得分:0)
嗨,你有没有试过像
这样的东西$args = array(
'post_type'=> 'custom-post-type',
'order' => 'ASC',
'orderby' => 'title',
'tag' => 'your-custom-post-tag', // use this if its a tag
'cat' => 'your-custom-category', // use this is its a category
'posts_per_page' => 30,
'post_status' => 'publish'
);
query_posts( $args );
然后只使用你一直在使用的基本循环?