Simple Sitemap – Automatically Generate a Responsive Sitemap - Version 1.28

Version Description

Download this release

Release Info

Developer dgwyer
Plugin Icon Simple Sitemap – Automatically Generate a Responsive Sitemap
Version 1.28
Comparing to
See all releases

Code changes from version 1.27 to 1.28

Files changed (3) hide show
  1. css/ss_style.css +1 -1
  2. readme.txt +6 -2
  3. simple-sitemap.php +4 -3
css/ss_style.css CHANGED
@@ -37,7 +37,7 @@
37
  width: 49%;
38
  }
39
 
40
- .sticky {
41
  font-style: italic;
42
  color: #999;
43
  font-size: 0.7em;
37
  width: 49%;
38
  }
39
 
40
+ .ss_sticky {
41
  font-style: italic;
42
  color: #999;
43
  font-size: 0.7em;
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dgwyer
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UUFZZU35RZPW8
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,6 +67,10 @@ The Plugin can also be installed directly from the main WordPress Plugin page.
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.
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UUFZZU35RZPW8
4
  Tags: sitemap, html, global, sort, shortcode, pages, posts
5
  Requires at least: 2.7
6
+ Tested up to: 3.1
7
+ Stable tag: 1.28
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.28*
71
+
72
+ * Changed the .sticky CSS class to be .ss_sticky to avoid conflict with the WordPress .sticky class.
73
+
74
  *1.27*
75
 
76
  * Fixed minor bug in 'Posts' view, when displaying the date. There was an erroneous double quotes in the dates link.
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.27
7
  Author: David Gwyer
8
  Author URI: http://www.presscoders.com
9
  */
@@ -31,6 +31,7 @@ Author URI: http://www.presscoders.com
31
  3. Have styling (in Plugins options page textarea?) to control sitemap rendering.
32
  4. Add all in-line styles to external style sheet.
33
  5. Options to display custom post types, with ability to show which custom post types to display or not display, and in what order?
 
34
  */
35
 
36
  // wpss_ suffix is derived from [W]ord[P]ress [s]imple [s]itemap
@@ -341,7 +342,7 @@ function wpss_gen() {
341
  echo "</ul></div>";
342
  }
343
  else {
344
- echo "<div class='page_author'>$author->display_name <span class=\"sticky\">(no pages published)</span></div>";
345
  }
346
  } ?>
347
  <?php
@@ -487,7 +488,7 @@ function wpss_gen() {
487
  <li class="post_item">
488
  <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
489
  <?php if ( $sticky == ' (sticky post)' ) : ?>
490
- <span class="sticky"><?php echo $sticky; ?></span>
491
  <?php endif; ?>
492
  </li>
493
  <?php endwhile;
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.28
7
  Author: David Gwyer
8
  Author URI: http://www.presscoders.com
9
  */
31
  3. Have styling (in Plugins options page textarea?) to control sitemap rendering.
32
  4. Add all in-line styles to external style sheet.
33
  5. Options to display custom post types, with ability to show which custom post types to display or not display, and in what order?
34
+ 6. Check which pages the simple-sitemap css is loaded. Don't really want it showing on pages that are not sitemap pages. I think it is loaded on all pages currently?
35
  */
36
 
37
  // wpss_ suffix is derived from [W]ord[P]ress [s]imple [s]itemap
342
  echo "</ul></div>";
343
  }
344
  else {
345
+ echo "<div class='page_author'>$author->display_name <span class=\"ss_sticky\">(no pages published)</span></div>";
346
  }
347
  } ?>
348
  <?php
488
  <li class="post_item">
489
  <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
490
  <?php if ( $sticky == ' (sticky post)' ) : ?>
491
+ <span class="ss_sticky"><?php echo $sticky; ?></span>
492
  <?php endif; ?>
493
  </li>
494
  <?php endwhile;