Created
March 21, 2013 22:38
-
-
Save jo-snips/5217463 to your computer and use it in GitHub Desktop.
The Events Calendar - Custom Venue WP_Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $args = array( | |
| 'post_status'=>'publish', | |
| 'post_type'=>array(TribeEvents::VENUE_POST_TYPE), | |
| 'posts_per_page'=>10, | |
| 'order'=>'DESC' | |
| ); | |
| $get_posts = null; | |
| $get_posts = new WP_Query(); | |
| $get_posts->query($args); | |
| if($get_posts->have_posts()) : while($get_posts->have_posts()) : $get_posts->the_post(); ?> | |
| <a href="<?php the_permalink(); ?>"> | |
| <?php the_title(); ?> | |
| </a> | |
| <?php the_content(); ?> | |
| <?php | |
| endwhile; | |
| endif; | |
| wp_reset_query(); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment