Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.27 |
Comparing to | |
See all releases |
Code changes from version 1.26 to 1.27
- readme.txt +16 -12
- simple-sitemap.php +2 -2
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.0.3
|
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 |
|
@@ -67,11 +67,20 @@ The Plugin can also be installed directly from the main WordPress Plugin page.
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
-
*1.
|
71 |
|
72 |
-
*
|
73 |
|
74 |
-
*1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
*1.20*
|
77 |
|
@@ -81,13 +90,8 @@ The Plugin can also be installed directly from the main WordPress Plugin page.
|
|
81 |
* Added new rendering of sitemap depending on drop-down options
|
82 |
* New options to sort by category, author, tags, and date improved significantly
|
83 |
|
84 |
-
*1.
|
85 |
-
|
86 |
-
* Now supports WordPress 3.0.3
|
87 |
-
* Updated Plugin options page
|
88 |
-
* Fixed issue: http://wordpress.org/support/topic/plugin-simple-sitemap-duplicated-id-post_item
|
89 |
-
* Fixed issue: http://wordpress.org/support/topic/plugin-simple-sitemap-empty-span-when-post-is-not-sticky
|
90 |
|
91 |
-
*1.
|
92 |
|
93 |
-
*
|
4 |
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 3.0.3
|
7 |
+
Stable tag: 1.27
|
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 |
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
*1.27*
|
71 |
|
72 |
+
* Fixed minor bug in 'Posts' view, when displaying the date. There was an erroneous double quotes in the dates link.
|
73 |
|
74 |
+
*1.26*
|
75 |
+
|
76 |
+
* Fixed CSS bug. Was affecting the size of some themes Nav Menu font sizes.
|
77 |
+
|
78 |
+
*1.25*
|
79 |
+
|
80 |
+
* Now supports WordPress 3.0.3
|
81 |
+
* Updated Plugin options page
|
82 |
+
* Fixed issue: http://wordpress.org/support/topic/plugin-simple-sitemap-duplicated-id-post_item
|
83 |
+
* Fixed issue: http://wordpress.org/support/topic/plugin-simple-sitemap-empty-span-when-post-is-not-sticky
|
84 |
|
85 |
*1.20*
|
86 |
|
90 |
* Added new rendering of sitemap depending on drop-down options
|
91 |
* New options to sort by category, author, tags, and date improved significantly
|
92 |
|
93 |
+
*1.10 Fixed so that default permalink settings work fine on drop-down filter*
|
|
|
|
|
|
|
|
|
|
|
94 |
|
95 |
+
*1.01 Minor amendments*
|
96 |
|
97 |
+
*1.0 Initial release*
|
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 |
*/
|
@@ -456,7 +456,7 @@ function wpss_gen() {
|
|
456 |
query_posts('post_status=publish&monthnum='.$curr_month->month.'&year='.$curr_month->year); // show posts ?>
|
457 |
<?php
|
458 |
global $wp_query;
|
459 |
-
echo "<a href
|
460 |
echo get_month_link($curr_month->year, $curr_month->month);
|
461 |
echo '">'.date( 'F', mktime(0, 0, 0, $curr_month->month) ).' '.$curr_month->year.'</a> ('.$wp_query->post_count.')'; ?>
|
462 |
<?php
|
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.27
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
456 |
query_posts('post_status=publish&monthnum='.$curr_month->month.'&year='.$curr_month->year); // show posts ?>
|
457 |
<?php
|
458 |
global $wp_query;
|
459 |
+
echo "<a href=\"";
|
460 |
echo get_month_link($curr_month->year, $curr_month->month);
|
461 |
echo '">'.date( 'F', mktime(0, 0, 0, $curr_month->month) ).' '.$curr_month->year.'</a> ('.$wp_query->post_count.')'; ?>
|
462 |
<?php
|