Since: 3.1.3
File: includes/wp-geo.php
Param: $wpgeo Instance of WPGeo
This action is called when WP Geo has been initiated and is ready. The $wpgeo parameter is a reference to the global instance of WPGeo.
If you are hooking into and extending WP Geo in any way, use this hook to ensure your functionality only executes when the WP Geo plugin is active and ready.
Example
function my_wpgeo_init( $wpgeo ) { // Your code here... } add_action( 'wpgeo_init', 'my_wpgeo_init' );