Viewing 1 replies (of 1 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    If by current you mean an event which is running at this point in time:

    $current_event = eo_get_posts( array(
           'event_start_before' => 'now',
           'event_end_after' => 'now',
           'numberposts' => 1,
           'showpastevents' => true,
       ) );
    
       if( $current_event ){
           $event = current_event[0];
           $link = get_permalink( $event->ID );
       }

    Feel free to adjust the query as desired…

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Get link to current event?’ is closed to new replies.