Get a list of upcoming events of one category

Home Forums Calendar Products Events Calendar PRO Get a list of upcoming events of one category

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1196622
    Dominik Schneider
    Participant

    Hi there,

    I want to get a list of events for a special category (“highlights”). Right now, I use following code:

    <?php
    $args = array(
    	'post_type' => 'tribe_events',
    	'posts_per_page' => 2,
    	'tax_query' => array(
    		array(
    			'taxonomy' => 'tribe_events_cat',
    			'field'    => 'slug',
    			'terms'    => 'highlight',
    		),
    	),
    );
    $query = new WP_Query( $args );
    
    $myposts = get_posts( $args );
    foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
    
    <h2><?php echo tribe_get_start_date( null, false, 'D | d. F' ); ?></h2>
    <p><?php echo the_title();?></p>
    
    <?php endforeach; wp_reset_postdata();?>

    In this case, I get a list of all events for the category “highlights”. But there are also included older events in the past. How to filter the list of events only for all upcoming events a(including events of the same day) ?

    Thank you!

    #1196969
    Nico
    Member

    Hi there Dominik,

    Thanks for getting in touch with us! I’ll help you on this ๐Ÿ™‚

    Try using this code instead:

    $events = tribe_get_events( array(
    'eventDisplay' => 'list',
    'posts_per_page' => 2,
    'tax_query' => array(
    array(
    'taxonomy' => 'tribe_events_cat',
    'field' => 'slug',
    'terms' => 'highlight',
    ),
    ),
    ) );

    For more info on tribe_get_events please review this knowledgebase article โ†’ Using tribe_get_events.

    Please let me know if that helps,
    Best,
    Nico

    #1198158
    Dominik Schneider
    Participant

    Hi Nico,
    thank you for your help.
    This works fine for me. Many thx!

    #1199012
    Nico
    Member

    Thanks for following up Dominik! Glad to hear this works for you ๐Ÿ™‚

    Iโ€™ll go ahead and close out this thread, but if you need help with anything else please donโ€™t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Get a list of upcoming events of one category’ is closed to new replies.