WP Google Map - Version 1.1.6

Version Description

Upgrade Google Map Plugin from here to get updated features.

Download this release

Release Info

Developer milonfci
Plugin Icon 128x128 WP Google Map
Version 1.1.6
Comparing to
See all releases

Code changes from version 1.1.5 to 1.1.6

Files changed (2) hide show
  1. readme.txt +6 -3
  2. srm_gmap_embed.php +3 -2
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.srmilon.com/google-map-demo
4
  Tags: Google Map, Google Map Embed, gmap, google map embed, wp map, wp map embed, map embed, best google maps, best maps, bing maps, cross browser, custom google map, custom google maps, map direction, easy map, geo, geocoder, gmaps, google earth, google map plugin, google map shortcode, google map widget, google maps v3, googlemaps, gprs, gps, gpx, kml, latitude, Longitude, location, loaction by address, map, map directions, map markers, map plugin, map shortcode, map styles, maps google, post map, map point, polygons, roads, routes, store locator, street view, wp google map, contact page map, google map wordpress, google maps wordpress, google maps for wordpress, simple google map, simple google map plugin, wp google maps,maps
5
  Requires at least: 2.9
6
  Tested up to: 4.7
7
- Version: 1.1.5
8
- Stable tag: 1.1.5
9
  Text Domain: gmap-embed
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -160,4 +160,7 @@ See the [Video](https://www.youtube.com/watch?v=Lak-tJjGjl8) ,hope you will get
160
 
161
 
162
  = 1.1.5 =
163
- * Widget title giving option added
 
 
 
4
  Tags: Google Map, Google Map Embed, gmap, google map embed, wp map, wp map embed, map embed, best google maps, best maps, bing maps, cross browser, custom google map, custom google maps, map direction, easy map, geo, geocoder, gmaps, google earth, google map plugin, google map shortcode, google map widget, google maps v3, googlemaps, gprs, gps, gpx, kml, latitude, Longitude, location, loaction by address, map, map directions, map markers, map plugin, map shortcode, map styles, maps google, post map, map point, polygons, roads, routes, store locator, street view, wp google map, contact page map, google map wordpress, google maps wordpress, google maps for wordpress, simple google map, simple google map plugin, wp google maps,maps
5
  Requires at least: 2.9
6
  Tested up to: 4.7
7
+ Version: 1.1.6
8
+ Stable tag: 1.1.6
9
  Text Domain: gmap-embed
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
160
 
161
 
162
  = 1.1.5 =
163
+ * Widget title giving option added
164
+
165
+ = 1.1.6 =
166
+ * Added option for creating unlimited maps(Previous limit was 10)
srm_gmap_embed.php CHANGED
@@ -6,7 +6,7 @@
6
  Author: SRMILON
7
  Text Domain: gmap-embed
8
  Author URI: http://www.srmilon.com
9
- Version: 1.1.5
10
  */
11
 
12
  if (!defined('ABSPATH')) exit;
@@ -177,7 +177,8 @@ if (!class_exists('srm_gmap_embed_main')) {
177
  {
178
  $content = '';
179
  $args = array(
180
- 'post_type' => 'wpgmapembed'
 
181
  );
182
  $mapsList = new WP_Query($args);
183
 
6
  Author: SRMILON
7
  Text Domain: gmap-embed
8
  Author URI: http://www.srmilon.com
9
+ Version: 1.1.6
10
  */
11
 
12
  if (!defined('ABSPATH')) exit;
177
  {
178
  $content = '';
179
  $args = array(
180
+ 'post_type' => 'wpgmapembed',
181
+ 'posts_per_page'=>-1
182
  );
183
  $mapsList = new WP_Query($args);
184