gpt4 book ai didi

Wordpress:限制每页帖子数+排除类别

转载 作者:行者123 更新时间:2023-12-04 06:02:52 26 4
gpt4 key购买 nike

在我的主页上,我限制了使用 query_posts('posts_per_page=2') 显示的最近帖子的数量

我还想排除一个类别,但无法弄清楚如何将这两个修改集成到循环中。

这是我的原始代码:

<?php query_posts('posts_per_page=2'); if (have_posts()) : while (have_posts()) : the_post();?>

<div class="date">Posted <?php the_time('F jS, Y') ?></div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('Continue Reading →'); ?>

<?php endwhile; endif; wp_reset_query();?>

我试过遵循一些不同的教程,但无法让它们工作。我确定这是我自己缺乏理解,因此对上述代码的任何明确说明或修改将不胜感激。

提前致谢!

最佳答案

试试 cat=-#查询中的语法:

query_posts('posts_per_page=2&cat=-1');

更新 展示如何在循环中手动处理它:
<?php 
query_posts('order=ASC');
$count = 0;
while (have_posts()) {
the_post();
$categories = get_the_category();
if (!in_category('1')) { // category to skip
$count++;
?>
<div class="date">Posted <?php the_time('F jS, Y') ?></div>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content('Continue Reading →'); ?>

<?php
if ($count == 2) break;
}
}
wp_reset_query();
?>

关于Wordpress:限制每页帖子数+排除类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8731776/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com