php - Wordpress show only upcoming items -


i have wordpress script shows agenda items. need show items upcoming. code show items include past items.

can tells my, how show upcoming items?

<?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; ?> 

from the docs seems can add clause query_posts().

also see here


Comments

Popular posts from this blog

user interface - How to replace the Python logo in a Tkinter-based Python GUI app? -

objective c - Greedy NSProgressIndicator Allocation -

how to set an OCR language in Google Drive -