function gcm_get_grower_map_data() { $growers = get_posts([ 'post_type' => 'growers', 'posts_per_page' => -1, 'post_status' => 'publish', ]); $locations = []; foreach ($growers as $grower) { $map = get_field('address', $grower->ID); if (!empty($map['lat']) && !empty($map['lng'])) { $locations[] = [ 'lat' => (float) $map['lat'], 'lng' => (float) $map['lng'], 'name' => get_the_title($grower->ID), 'url' => get_permalink($grower->ID), ]; } } return $locations; } function gcm_enqueue_grower_map_script() { wp_register_script( 'gcm-grower-map', '', // inline script [], null, true ); wp_enqueue_script('gcm-grower-map'); wp_localize_script( 'gcm-grower-map', 'GROWER_MAP_DATA', gcm_get_grower_map_data() ); } add_action('wp_enqueue_scripts', 'gcm_enqueue_grower_map_script');
Skip to content