/ Published in: PHP
Gets the date, pulls a list of upcoming events (posts from cat 6) and sorts by custom field \\"event_date\\" . Add to sidebar via PHP Code Widget.
Expand |
Embed | Plain Text
<?php query_posts('cat=6&showposts=5&meta_key=event_date&meta_compare=>=&meta_value='.$today.'&orderby=meta_value&order=ASC'); ?> <?php if ( have_posts() ) : ?> <ul> <?php while ( have_posts() ) : the_post(); ?> <li class="cat-post-item"><a class="post-title" title="Permalink to <?php the_title() ?>" rel="bookmark" href="<?php the_permalink() ?>"><?php the_title() ?></a></li> <?php endwhile; ?> </ul> <?php endif; wp_reset_query(); ?>
You need to login to post a comment.
