Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.01 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.01
- readme.txt +5 -3
- simple-sitemap.php +2 -1
readme.txt
CHANGED
@@ -1,15 +1,17 @@
|
|
1 |
=== Simple Sitemap ===
|
2 |
Contributors: dgwyer
|
3 |
-
Tags: html, global, sort, shortcode, pages, posts
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
HTML Sitemap that displays an ordered list of posts and pages. Each list can be sorted via a drop down list of options.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
|
|
|
|
|
13 |
|
14 |
Available sorting options are:
|
15 |
|
1 |
=== Simple Sitemap ===
|
2 |
Contributors: dgwyer
|
3 |
+
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 1.01
|
7 |
|
8 |
HTML Sitemap that displays an ordered list of posts and pages. Each list can be sorted via a drop down list of options.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
Easiest way to add a HTML sitemap of posts and pages to your site!
|
13 |
+
|
14 |
+
This gives your visitors an efficient way to view all of your available content (posts/pages) in one place. It is also good for SEO purposes and makes it easier for spiders to index your content. The sitemap generates two ordered lists, one for posts, and one for pages. Each list can be sorted individually via a drop down list of options.
|
15 |
|
16 |
Available sorting options are:
|
17 |
|
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 that displays an ordered list of posts and pages. Each list can be sorted via a drop down list of options.
|
6 |
-
Version: 1.
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
@@ -34,6 +34,7 @@ Author URI: http://www.presscoders.com
|
|
34 |
// 5. Have option to show Page/Post sitemaps side by side (default) or underneath each other (for users with long titles)
|
35 |
// 6. Be able to sort ascending/descending in addition to the sort drop down options for each list.
|
36 |
// 7. Be able to exclude individual posts/pages.
|
|
|
37 |
|
38 |
// wpss_ suffix is derived from [W]ord[P]ress [s]imple [s]itemap
|
39 |
add_shortcode('simple-sitemap', 'wpss_gen');
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://www.presscoders.com/plugins/free-plugins/simple-sitemap/
|
5 |
Description: HTML Sitemap that displays an ordered list of posts and pages. Each list can be sorted via a drop down list of options.
|
6 |
+
Version: 1.01
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
34 |
// 5. Have option to show Page/Post sitemaps side by side (default) or underneath each other (for users with long titles)
|
35 |
// 6. Be able to sort ascending/descending in addition to the sort drop down options for each list.
|
36 |
// 7. Be able to exclude individual posts/pages.
|
37 |
+
// 8. Think about adding Categories, tags to the sitemap too.
|
38 |
|
39 |
// wpss_ suffix is derived from [W]ord[P]ress [s]imple [s]itemap
|
40 |
add_shortcode('simple-sitemap', 'wpss_gen');
|