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; ?>
Comments
Post a Comment