Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.83 |
Comparing to | |
See all releases |
Code changes from version 1.82 to 1.83
- readme.txt +5 -1
- simple-sitemap.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: dgwyer
|
|
3 |
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 4.4
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
Powerful but simple to use HTML sitemap. Display site content in one or more lists separated by post type, customized via flexible filters.
|
9 |
|
@@ -58,6 +58,10 @@ See our <a href="http://www.wpgoplugins.com" target="_blank">WordPress plugin si
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
|
|
61 |
*1.82 update*
|
62 |
|
63 |
* Better security.
|
3 |
Tags: sitemap, html, global, sort, shortcode, pages, posts
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 4.4
|
6 |
+
Stable tag: 1.83
|
7 |
|
8 |
Powerful but simple to use HTML sitemap. Display site content in one or more lists separated by post type, customized via flexible filters.
|
9 |
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
*1.83 update*
|
62 |
+
|
63 |
+
* Updated the docs in plugin options for the 'orderby' shortcode attribute. A link to the full list of available attributes is included.
|
64 |
+
|
65 |
*1.82 update*
|
66 |
|
67 |
* Better security.
|
simple-sitemap.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://wordpress.org/plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts, pages, or custom post types. You can even display posts in groups sorted by taxonomy!
|
6 |
-
Version: 1.
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgothemes.com
|
9 |
Text Domain: simple-sitemap
|
@@ -82,7 +82,7 @@ function wpss_render_form() {
|
|
82 |
|
83 |
<div style="background:#fff;border: 1px dashed #ccc;font-size: 13px;margin: 20px 0 10px 0;padding: 5px 0 5px 8px;">
|
84 |
<?php printf( __( 'Show a heading label for each post type as well as display a list of links or plain text. If you are outputting pages then you can also control page depth too (for page hierarchies).<br>', 'simple-sitemap' ) ); ?>
|
85 |
-
<br>For the
|
86 |
<br><br><code>e.g. [simple-sitemap show_label="true" links="true" page_depth="1" order="asc" orderby="title" exclude="1,2,3"]</code>
|
87 |
<br><br><b>defaults:<br>
|
88 |
show_label="true"<br>
|
3 |
Plugin Name: Simple Sitemap
|
4 |
Plugin URI: http://wordpress.org/plugins/simple-sitemap/
|
5 |
Description: HTML sitemap to display content as a single linked list of posts, pages, or custom post types. You can even display posts in groups sorted by taxonomy!
|
6 |
+
Version: 1.83
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgothemes.com
|
9 |
Text Domain: simple-sitemap
|
82 |
|
83 |
<div style="background:#fff;border: 1px dashed #ccc;font-size: 13px;margin: 20px 0 10px 0;padding: 5px 0 5px 8px;">
|
84 |
<?php printf( __( 'Show a heading label for each post type as well as display a list of links or plain text. If you are outputting pages then you can also control page depth too (for page hierarchies).<br>', 'simple-sitemap' ) ); ?>
|
85 |
+
<br>For the <code>order</code> attribute specify <code>asc</code> for ascending, or <code>desc</code> for descending post sort order. As for the <code>orderby</code> attribute you can filter posts by any of the <code>orderby</code> paramters used in the <code>WP_Query</code> class such as <code>title</code>, <code>date</code>, <code>author</code>, <code>ID</code>, <code>menu_order</code> etc. See the full list <a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">here</a>. The <code>exclude</code> attribute simply takes a comma separated list of post IDs.
|
86 |
<br><br><code>e.g. [simple-sitemap show_label="true" links="true" page_depth="1" order="asc" orderby="title" exclude="1,2,3"]</code>
|
87 |
<br><br><b>defaults:<br>
|
88 |
show_label="true"<br>
|