Caching Google Maps Geo IP's Question.
In directory: classipress/framework/includes
File: geo.php
Code:
set_transient( $transient_key, $geo_coord, 60*60*24*7 ); // Cache for a week
Is this how the CP Theme is getting around the API Limit set forth by Google? > By caching the coordinates, there is no need to request (call) the function to retrieve the same coordinates from Google in order to display the map and pin marker. Is this correct?