php 在页面上使用多个循环,不打印重复的帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在页面上使用多个循环,不打印重复的帖子相关的知识,希望对你有一定的参考价值。

<?php
query_posts('showposts=8');
$ids = array();
while (have_posts()) : the_post();
$ids[] = get_the_ID();
the_title();
the_content();
endwhile;
?>

<?php
query_posts(array('post__not_in' => $ids));
while (have_posts()) : the_post();
the_title();
the_content();
endwhile;
?>

以上是关于php 在页面上使用多个循环,不打印重复的帖子的主要内容,如果未能解决你的问题,请参考以下文章

在 archive.php 上运行第二个非分页循环

PHP循环:围绕每三个项目语法添加一个div [重复]

如何在...循环中从动态列表中打印多个值

用php发布数据[重复]

如何在帖子类型“页面”上更改CPT循环的摘录长度?

Django 循环返回多个帖子