- Current Events
- Upcoming Events
- Past Events
There are currently no events.
There are currently no events.
There are currently no events.
function auto_add_venue_events_to_venue_page($content) { if (is_singular('event_venue') && in_the_loop() && is_main_query()) { $content .= do_shortcode('[venue_events]'); } return $content; } add_filter('the_content', 'auto_add_venue_events_to_venue_page');