Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.62 |
Comparing to | |
See all releases |
Code changes from version 1.61 to 1.62
- readme.txt +5 -1
- simple-sitemap.php +2 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.9
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
HTML sitemap to display content as a single linked list of posts and pages, or as groups sorted by taxonomy (via a drop-down box).
|
10 |
|
@@ -60,6 +60,10 @@ See our <a href="http://www.presscoders.com" target="_blank">WordPress developme
|
|
60 |
|
61 |
== Changelog ==
|
62 |
|
|
|
|
|
|
|
|
|
63 |
*1.61*
|
64 |
|
65 |
* Fixed bug limiting CPT posts to displaying a maximum of 5 each.
|
4 |
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.9
|
7 |
+
Stable tag: 1.62
|
8 |
|
9 |
HTML sitemap to display content as a single linked list of posts and pages, or as groups sorted by taxonomy (via a drop-down box).
|
10 |
|
60 |
|
61 |
== Changelog ==
|
62 |
|
63 |
+
*1.62*
|
64 |
+
|
65 |
+
* Sitemap shortcode now works in text widgets.
|
66 |
+
|
67 |
*1.61*
|
68 |
|
69 |
* Fixed bug limiting CPT posts to displaying a maximum of 5 each.
|
simple-sitemap.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://www.presscoders.com/plugins/free-plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts and pages, or as groups sorted by taxonomy (via a drop-down box).
|
6 |
-
Version: 1.
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
@@ -53,6 +53,7 @@ register_uninstall_hook(__FILE__, 'wpss_delete_plugin_options');
|
|
53 |
add_action('admin_init', 'wpss_init' );
|
54 |
add_action('admin_menu', 'wpss_add_options_page');
|
55 |
add_filter( 'plugin_action_links', 'wpss_plugin_action_links', 10, 2 );
|
|
|
56 |
|
57 |
/* Delete options table entries ONLY when plugin deactivated AND deleted. */
|
58 |
function wpss_delete_plugin_options() {
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://www.presscoders.com/plugins/free-plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts and pages, or as groups sorted by taxonomy (via a drop-down box).
|
6 |
+
Version: 1.62
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
53 |
add_action('admin_init', 'wpss_init' );
|
54 |
add_action('admin_menu', 'wpss_add_options_page');
|
55 |
add_filter( 'plugin_action_links', 'wpss_plugin_action_links', 10, 2 );
|
56 |
+
add_filter('widget_text', 'do_shortcode'); // make sitemap shortcode work in text widgets
|
57 |
|
58 |
/* Delete options table entries ONLY when plugin deactivated AND deleted. */
|
59 |
function wpss_delete_plugin_options() {
|