Advertisement
swte

Untitled

Sep 24th, 2018
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. add_action('wp_ajax_fiapi_geocode', function(){
  2. $coords = array();
  3. $response = wp_remote_get("https://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($_GET['address'])."&key=" . FIAPI_GOOGLE_API_KEY);
  4. if (!is_wp_error($response)){
  5. $result = json_decode($response['body'], true);
  6. $coords = $result['results'][0]['geometry']['location'];
  7. }
  8. wp_send_json($coords);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement