7

是否可以在保持标准 Wordpress 循环完整的同时订购帖子(即无需创建全新的 WP_Query?

通过标准循环,我的意思是:

<?php if ( have_posts() ) : ?>


            <?php /* The loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>

我可以在此代码中指定顺序吗?

4

2 回答 2

8

功能query_posts页面所述:

强烈建议您改用过滤器pre_get_posts,并通过检查来更改主查询is_main_query

pre_get_posts您可以在主题functions.php文件中添加新操作,例如:

function homepage_posts($query)
{
    if ($query->is_home() && $query->is_main_query())
    {
        $query->set( 'orderby', 'title' );
    }
}
add_action('pre_get_posts', 'homepage_posts');
于 2013-10-27T13:24:59.013 回答
1

wp_reset_query()是要走的路

示例片段

<?php query_posts(array('orderby'=>'title','order'=>'DESC'));

if ( have_posts() ) :
    while ( have_posts() ) : the_post(); ?>
        <a href="<?php the_permalink() ?>"><?php the_title() ?></a><br /><?php
    endwhile;
endif;
wp_reset_query();

但请记住:query_posts() 会更改您的主查询,不推荐使用。仅在绝对必要时使用(请参阅 query_posts:注意事项)。对于辅助循环,首选创建 WP_Query 或 get_posts() 的新实例。

于 2013-10-27T13:15:42.233 回答