Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 8, 2017 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpflippercode/90ec9cfb90784dca85726c669a339967 to your computer and use it in GitHub Desktop.
Save wpflippercode/90ec9cfb90784dca85726c669a339967 to your computer and use it in GitHub Desktop.
Show all Locations on the google maps without assigning them to the map manually.
add_filter('wpgmp_location_criteria', 'wpgmp_location_criteria',1,2 );
function wpgmp_location_criteria($location_criteria,$map) {
//This will apply for map id 1.
if( $map->map_id == 1) {
$location_criteria['show_all_locations'] = true;
}
return $location_criteria;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment