Advertisement
Guest User

Querying events as regular WP posts

a guest
Sep 7th, 2012
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. query_posts(array(
  2.     'post_type' => TribeEvents::POSTTYPE
  3. ));
  4.  
  5. while (have_posts()){
  6.     the_post();
  7.     echo get_the_date().'<br />';
  8. }
  9.  
  10. wp_reset_query();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement