Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $all_events = tribe_get_events(
- array(
- 'eventDisplay'=>'upcoming',
- 'posts_per_page'=>1,
- 'tax_query'=> array(
- array(
- 'taxonomy' => 'tribe_events_cat',
- 'field' => 'slug',
- 'terms' => 'microsoft-word-classes'
- )
- )
- )
- );
- foreach($all_events as $post) {
- setup_postdata($post);
- the_title();
- echo tribe_get_start_date( $post->ID, false, 'D. M j, Y' );
- }
Advertisement
Add Comment
Please, Sign In to add comment