0

我的 Wordpress 网站在主页上只显示一个循环。

今天我注意到循环返回特定帖子的副本。

我检查了数据库,数据库中只有一个帖子的物理存在。

这就是我定义循环参数的方式:

$args = array(
        'posts_per_page' => 65,
        'ignore_sticky_posts' => 1,
        'paged' => $paged,
        'orderby' => 'date',
        'order' => 'DESC',
        'post_type'=>'post'
    );
    query_posts($args); 

如果我在 orderby 子句中输入 ID 而不是“日期”,则问题不存在。但我需要按日期订购。

任何想法为什么会发生这种情况?我知道这通常发生在我们有两个或更多循环时。

谢谢!

4

1 回答 1

-1

试试这个代码

<?php
wp_reset_query();
?>
<?php
if ($allposts->have_posts()):
    while ($allposts->have_posts()):
        $allposts->the_post();
        the_title();
    endwhile;
endif;
?>
于 2013-03-14T14:30:31.213 回答