Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

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/41ad368360d2d140da4a253d11e7cd28 to your computer and use it in GitHub Desktop.
Save wpflippercode/41ad368360d2d140da4a253d11e7cd28 to your computer and use it in GitHub Desktop.
Show All Locations on The Map
add_filter('wpgmp_location_criteria','wpgmp_location_criteria',1,2 );
function wpgmp_location_criteria($criteria,$map) {
$criteria['show_all_locations'] = true;
return $criteria;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment