Wordpress只显示即将推出的商品

时间:2014-03-24 21:00:50

标签: php wordpress

我有一个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; ?>

1 个答案:

答案 0 :(得分:0)

来自 the docs

似乎可以向query_posts()添加条款。

另见here