Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.61 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.61
- readme.txt +5 -1
- 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.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.6*
|
64 |
|
65 |
* Links on Plugins page updated.
|
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.61
|
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.61*
|
64 |
+
|
65 |
+
* Fixed bug limiting CPT posts to displaying a maximum of 5 each.
|
66 |
+
|
67 |
*1.6*
|
68 |
|
69 |
* Links on Plugins page updated.
|
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 |
*/
|
@@ -423,7 +423,7 @@ function wpss_gen() {
|
|
423 |
|
424 |
<?php
|
425 |
|
426 |
-
$cpt_posts = get_posts( 'post_type='.$post_type->name );
|
427 |
|
428 |
if( $cpt_posts ) : ?>
|
429 |
<ul class="cpt_item_list">
|
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.61
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.presscoders.com
|
9 |
*/
|
423 |
|
424 |
<?php
|
425 |
|
426 |
+
$cpt_posts = get_posts( 'post_type='.$post_type->name.'&posts_per_page=-1' );
|
427 |
|
428 |
if( $cpt_posts ) : ?>
|
429 |
<ul class="cpt_item_list">
|