5

我正在尝试首先在 wordpress 中显示较旧的帖子:

我正在使用此代码获取当前类别的帖子列表:

<ul id="submenu_productos" class="clearfix">
    <?php
        $IDOutsideLoop = $post->ID;
        while( have_posts() ) {
            the_post();
            foreach( ( get_the_category() ) as $category )
                $my_query = new WP_Query('category_name=' . $category->category_nicename . '&orderby=date&order=desc&showposts=100');
            if( $my_query ) {
                while ( $my_query->have_posts() ) {
                    $my_query->the_post(); ?>
            <li<?php print ( is_single() && $IDOutsideLoop == $post->ID ) ? ' class="test"' : ''; ?>>
                <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> |
            </li>
    <?php
            }
        }
    }
    ?>
</ul>

如果我更改"&order=desc&""&order=ASC&"它仍然具有相同的顺序。我在这里做错了什么?

4

1 回答 1

4

您是否有机会使用 Post Types Order 插件?有一个设置会覆盖排序(自动排序排序选项)。

于 2012-10-26T10:30:28.130 回答