Advertisement
Guest User

Untitled

a guest
Jul 13th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. $loop = new WP_Query( array(
  4. 'showposts' => 5,
  5. 'post_type' => 'eventdate',
  6. 'category_name' => X,
  7. 'orderby' => 'meta_value',
  8. 'meta_key' => 'CUSTOM-FIELD-NAME'
  9. )
  10. );
  11. while ( $loop->have_posts() ) : $loop->the_post(); ?>
  12. <div>
  13. <h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  14. </div>
  15. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement