Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $args = array(
- 'post_type' => 'tribe_events',
- 'showposts' => -1
- );
- $evs = new WP_Query($args);
- if ($evs->have_posts()) {
- $hasPosts = true; $first = true;
- while ($evs->have_posts()) {
- $evs->the_post();
- global $more; $more = false;
- the_title('<br />', '<br />');
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment