The Society of Exploration Geophysicists extends its reach globally, offering a comprehensive suite of events, including the renowned IMAGE conference, as well as specialized workshops, forums, and seminars, all designed to drive learning, networking, and business development.
‘calendar_events’,
‘posts_per_page’ => -1,
‘meta_key’ => ‘event_date’,
‘orderby’ => ‘meta_value’,
‘order’ => ‘ASC’
);
$events_query = new WP_Query($args);
// Prepare events array for FullCalendar
$events_array = array();
if ($events_query->have_posts()) {
while ($events_query->have_posts()) {
$events_query->the_post();
$event_date = get_field(‘event_date’);
// Add each event to the array
$events_array[] = array(
‘title’ => get_the_title(),
‘start’ => $event_date,
‘url’ => get_permalink(),
‘backgroundColor’ => ‘#3788d8’,
‘borderColor’ => ‘#3788d8’
);
}
wp_reset_postdata();
}
?>
ADVERTISEMENT