Wordpress query_posts()orderby => '标题'不起作用

时间:2013-01-30 11:18:37

标签: wordpress-theming wordpress

我在wordpress网站的导航列表中订购一些帖子时遇到问题。这是我的(严重缩进的)代码:

<ul class="tree lvl-0">
        <?php
            $args = array('child_of' => 6);
            $categories = get_categories( $args );
            foreach($categories as $category) {
                echo '<li class="collapsed"><a href="' . get_category_link( $category->term_id ) . '"' . $category->name  . '" ' . '>' . $category->name.'</a>';
                $cat_id= $category->term_id;
                wp_reset_query();
                $args = array(
                    'cat' => $cat_id,
                    'posts_per_page' => 20,
                    'order' => 'ASC',
                    'orderby' => 'title'
                );
                query_posts($args);
                            // start the wordpress loop!
                        ?>
                            <ul class="lvl-1">
                                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                        <li><a href="<?php the_permalink();?>"><?php the_title(); ?></a></li>
                                <?php endwhile; endif; ?>
                            </ul>
                        </li>
            <?php wp_reset_query(); } ?>
    </ul>

有问题的部分是

$args = array(
    'cat' => $cat_id,
    'posts_per_page' => 20,
    'order' => 'ASC',
    'orderby' => 'title'
);
query_posts($args);

我不太确定他们的订单是什么,可能是约会。 此外,当我通过'name'或其他任何东西订购时,它的工作原理。 :(

感谢您提前提供任何帮助

2 个答案:

答案 0 :(得分:0)

见Hobo对问题的评论^

我的客户也在使用qTranslate,这是问题的确切原因。

答案 1 :(得分:0)

问题是$ args,请执行以下操作:

$args = array(
    'cat' => $cat_id,
    'posts_per_page' => 20,
    'orderby' => array( 'title' => 'ASC' )
);

您还可以通过多个参数进行排序,例如:

$args = array(
    'cat' => $cat_id,
    'posts_per_page' => 20,
    'orderby' => array( 'menu_order' => 'ASC', 'title' => 'ASC', 'post_date' => 'DESC' ),
);