Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 2.6 |
Comparing to | |
See all releases |
Code changes from version 2.5 to 2.6
classes/shortcodes/simple-sitemap-group-shortcode.php
CHANGED
@@ -190,7 +190,6 @@ class WPGO_Simple_Sitemap_Group_Shortcode {
|
|
190 |
// ***********
|
191 |
// CONTENT END
|
192 |
// ***********
|
193 |
-
ob_start();
|
194 |
|
195 |
$sitemap = ob_get_contents();
|
196 |
ob_end_clean();
|
190 |
// ***********
|
191 |
// CONTENT END
|
192 |
// ***********
|
|
|
193 |
|
194 |
$sitemap = ob_get_contents();
|
195 |
ob_end_clean();
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: dgwyer, wpgoplugins
|
3 |
Tags: seo sitemap, html, sitemap, html sitemap, seo, global, sort, shortcode, pages, posts, custom post types, post types, responsive, responsive sitemap
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 4.9
|
6 |
-
Stable tag: 2.
|
7 |
|
8 |
The best HTML5 sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
@@ -76,6 +76,10 @@ No. This plugin is for generating an HTML sitemap only.
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
|
|
79 |
= 2.5, JUNE 19, 2018 =
|
80 |
|
81 |
* Settings page updated.
|
2 |
Contributors: dgwyer, wpgoplugins
|
3 |
Tags: seo sitemap, html, sitemap, html sitemap, seo, global, sort, shortcode, pages, posts, custom post types, post types, responsive, responsive sitemap
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.9.8
|
6 |
+
Stable tag: 2.6
|
7 |
|
8 |
The best HTML5 sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 2.6, September 21, 2018 =
|
80 |
+
|
81 |
+
* Fixed bug with [simple-sitemap-group] shortcode. Was previously buffering output twice causing display issues.
|
82 |
+
|
83 |
= 2.5, JUNE 19, 2018 =
|
84 |
|
85 |
* Settings page updated.
|
simple-sitemap.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://wordpress.org/plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts, pages, or custom post types. You can even display posts in groups sorted by taxonomy!
|
6 |
-
Version: 2.
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgoplugins.com
|
9 |
Text Domain: simple-sitemap
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://wordpress.org/plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts, pages, or custom post types. You can even display posts in groups sorted by taxonomy!
|
6 |
+
Version: 2.6
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgoplugins.com
|
9 |
Text Domain: simple-sitemap
|