我有一个Wordpress脚本,显示议程项目。我只需要展示即将推出的商品。但是我的代码显示所有项目都包含过去的项目。
有人可以告诉我,如何仅展示即将推出的商品吗?
<?php
query_posts('post_type=agenda&&showposts=-1');
if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post_page">
<h3 class="date"><?php if(get_field('date')) { echo date_i18n("l d F Y",strtotime(get_field('date'))); } else { the_time('l d F Y'); } ?></h3>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<div class="clear"></div>
<a href="<?php the_permalink(); ?>">Lees meer...</a>
</div>
<?php endwhile; endif; ?>