HTML Page Sitemap - Version 1.1.2

Version Description

  • Released 1/31/2012
  • Hyphen in shortcode changed to underscore. html_sitemap and htmlsitemap shortcodes work. read more here
  • HTML Sitemap compatible with latest versions of WordPress up to 3.3.1
Download this release

Release Info

Developer amandato
Plugin Icon wp plugin HTML Page Sitemap
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

Files changed (2) hide show
  1. html-sitemap.php +6 -4
  2. readme.txt +19 -10
html-sitemap.php CHANGED
@@ -2,8 +2,8 @@
2
  /*
3
  Plugin Name: HTML Page Sitemap
4
  Plugin URI: http://www.pluginspodcast.com/plugins/html-page-sitemap/
5
- Description: <a href="http://www.pluginspodcast.com/plugins/html-page-sitemap/" target="_blank">HTML Page Sitemap</a> Adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html-sitemap]. A plugin from <a href="http://www.pluginspodcast.com/" target="_blank">Plugins: The WordPress Plugins Podcast</a>.
6
- Version: 1.1.1
7
  Author: Angelo Mandato
8
  Author URI: http://www.pluginspodcast.com/
9
  Change Log:
@@ -12,7 +12,7 @@ Change Log:
12
  Contributors:
13
  Angelo Mandato, CIO RawVoice and host of the PluginsPodcast.com - Plugin author
14
 
15
- Copyright 2009=2010 Angelo Mandato, host of the Plugins Podcast (http://www.pluginspodcast.com)
16
 
17
  License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
18
  */
@@ -51,6 +51,8 @@ function html_sitemap_shortcode_handler( $args, $content = null )
51
  return '<ul>'. $html .'</ul>';
52
  }
53
 
54
- add_shortcode('html-sitemap', 'html_sitemap_shortcode_handler');
 
 
55
 
56
  ?>
2
  /*
3
  Plugin Name: HTML Page Sitemap
4
  Plugin URI: http://www.pluginspodcast.com/plugins/html-page-sitemap/
5
+ Description: <a href="http://www.pluginspodcast.com/plugins/html-page-sitemap/" target="_blank">HTML Page Sitemap</a> Adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html_sitemap]. A plugin from <a href="http://www.pluginspodcast.com/" target="_blank">Plugins: The WordPress Plugins Podcast</a>.
6
+ Version: 1.1.2
7
  Author: Angelo Mandato
8
  Author URI: http://www.pluginspodcast.com/
9
  Change Log:
12
  Contributors:
13
  Angelo Mandato, CIO RawVoice and host of the PluginsPodcast.com - Plugin author
14
 
15
+ Copyright 2009-2012 Angelo Mandato, host of the Plugins Podcast (http://www.pluginspodcast.com)
16
 
17
  License: GPL (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
18
  */
51
  return '<ul>'. $html .'</ul>';
52
  }
53
 
54
+ add_shortcode('html-sitemap', 'html_sitemap_shortcode_handler'); // This is no longer recommended as any plugin that creates their own shortcode starting with 'html' will also get the handler call
55
+ add_shortcode('htmlsitemap', 'html_sitemap_shortcode_handler');
56
+ add_shortcode('html_sitemap', 'html_sitemap_shortcode_handler');
57
 
58
  ?>
readme.txt CHANGED
@@ -3,31 +3,31 @@ Contributors: Angelo Mandato of the PluginsPodcast.com
3
  Donate link: http://www.pluginspodcast.com/contact/
4
  Tags: sitemap, page, pages, shortcode, cms, static, short code, map, pagemap, site, html
5
  Requires at least: 2.7.0
6
- Tested up to: 3.0
7
- Stable tag: 1.1.1
8
 
9
- Adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html-sitemap], perfect for those who use WordPress as a CMS.
10
 
11
  == Description ==
12
- This simple plugin adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html-sitemap] in the page content. This simple plugin is configured from the shortcode. Settings include the `sort_column`, `sort_order`, `exclude`, `include`, `depth`, `child_of`, `meta_key`, `meta_value`, `authors`, `number`, and `offset`. You can set essentially everything you can set in the wp_list_pages function.
13
 
14
  This plugins is perfect for those who use WordPress as a CMS.
15
 
16
  First example shows how to add the sitemap in its simplest form.
17
 
18
- `[html-sitemap]`
19
 
20
  Example shortcode will add a sitemap to a page displaying a depth limit of 3 and exclude page ID 708.
21
 
22
- `[html-sitemap depth=3 exclude=708]`
23
 
24
  Example shortcode will add a sitemap to a page displaying only children and grandchildren of the current page.
25
 
26
- `[html-sitemap depth=2 child_of=CURRENT]`
27
 
28
  Last example shortcode will add a sitemap displaying the page modified date with the pages sorted by the menu order number.
29
 
30
- `[html-sitemap show_date=modified sort_column=menu_order]`
31
 
32
 
33
  Please see the [Template Documentation for the `wp_list_pages` function](http://codex.wordpress.org/Template_Tags/wp_list_pages) for detailed documentation of the available attributes and their values.
@@ -36,6 +36,9 @@ For the latest information visit the website.
36
 
37
  [http://www.pluginspodcast.com/plugins/html-page-sitemap/](http://www.pluginspodcast.com/plugins/html-page-sitemap/)
38
 
 
 
 
39
  == Frequently Asked Questions ==
40
 
41
  = Why is there no settings page for the plugin? =
@@ -44,16 +47,22 @@ For the latest information visit the website.
44
  == Installation ==
45
  1. Copy the entire directory from the downloaded zip file into the /wp-content/plugins/ folder.
46
  2. Activate the "HTML Page Sitemap" plugin in the Plugin Management page.
47
- 3. Add the shortcode [html-sitemap] to the page(s) of your choice.
48
 
49
  == Screenshots ==
50
  1. HTML Page Sitemap in the Default WordPress theme.
51
 
52
  == Changelog ==
53
 
 
 
 
 
 
 
54
  = 1.1.1 =
55
  * Released 6/27/2010
56
- * HTML Sitemap compatiable with latest versions of WordPress 2.9 and 3.0.
57
 
58
  = 1.1.0 =
59
  * Released on 11/24/2009
3
  Donate link: http://www.pluginspodcast.com/contact/
4
  Tags: sitemap, page, pages, shortcode, cms, static, short code, map, pagemap, site, html
5
  Requires at least: 2.7.0
6
+ Tested up to: 3.3.1
7
+ Stable tag: 1.1.2
8
 
9
+ Adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html_sitemap], perfect for those who use WordPress as a CMS.
10
 
11
  == Description ==
12
+ This simple plugin adds an HTML (Not XML) sitemap of your blog pages (not posts) by entering the shortcode [html_sitemap] in the page content. This simple plugin is configured from the shortcode. Settings include the `sort_column`, `sort_order`, `exclude`, `include`, `depth`, `child_of`, `meta_key`, `meta_value`, `authors`, `number`, and `offset`. You can set essentially everything you can set in the wp_list_pages function.
13
 
14
  This plugins is perfect for those who use WordPress as a CMS.
15
 
16
  First example shows how to add the sitemap in its simplest form.
17
 
18
+ `[html_sitemap]`
19
 
20
  Example shortcode will add a sitemap to a page displaying a depth limit of 3 and exclude page ID 708.
21
 
22
+ `[html_sitemap depth=3 exclude=708]`
23
 
24
  Example shortcode will add a sitemap to a page displaying only children and grandchildren of the current page.
25
 
26
+ `[html_sitemap depth=2 child_of=CURRENT]`
27
 
28
  Last example shortcode will add a sitemap displaying the page modified date with the pages sorted by the menu order number.
29
 
30
+ `[html_sitemap show_date=modified sort_column=menu_order]`
31
 
32
 
33
  Please see the [Template Documentation for the `wp_list_pages` function](http://codex.wordpress.org/Template_Tags/wp_list_pages) for detailed documentation of the available attributes and their values.
36
 
37
  [http://www.pluginspodcast.com/plugins/html-page-sitemap/](http://www.pluginspodcast.com/plugins/html-page-sitemap/)
38
 
39
+ = ATTENTION: HTML-SITEMAP SHORTCODE HAS CHANGED =
40
+ Though `html-sitemap` still works, the new HTML Sitemap shortcode is `html_sitemap`. The dash/hyphen may not get processed correctly if other plugins use the same prefix such as the Syntax Highlighter plugin. [read more](http://core.trac.wordpress.org/ticket/11948), [and more](http://core.trac.wordpress.org/ticket/17657)
41
+
42
  == Frequently Asked Questions ==
43
 
44
  = Why is there no settings page for the plugin? =
47
  == Installation ==
48
  1. Copy the entire directory from the downloaded zip file into the /wp-content/plugins/ folder.
49
  2. Activate the "HTML Page Sitemap" plugin in the Plugin Management page.
50
+ 3. Add the shortcode [html_sitemap] to the page(s) of your choice.
51
 
52
  == Screenshots ==
53
  1. HTML Page Sitemap in the Default WordPress theme.
54
 
55
  == Changelog ==
56
 
57
+
58
+ = 1.1.2 =
59
+ * Released 1/31/2012
60
+ * Hyphen in shortcode changed to underscore. `html_sitemap` and `htmlsitemap` shortcodes work. [read more here](http://wordpress.org/support/topic/plugins-wont-coexist?replies=5)
61
+ * HTML Sitemap compatible with latest versions of WordPress up to 3.3.1
62
+
63
  = 1.1.1 =
64
  * Released 6/27/2010
65
+ * HTML Sitemap compatible with latest versions of WordPress 2.9 and 3.0.
66
 
67
  = 1.1.0 =
68
  * Released on 11/24/2009