Version Description
March 14, 2019 =
Updated settings page info.
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 2.8 |
Comparing to | |
See all releases |
Code changes from version 2.7 to 2.8
- classes/simple-sitemap-settings.php +36 -28
- css/simple-sitemap-admin.css +15 -0
- readme.txt +5 -1
- simple-sitemap.php +1 -1
classes/simple-sitemap-settings.php
CHANGED
@@ -41,15 +41,13 @@ class WPGO_Simple_Sitemap_Settings {
|
|
41 |
<div class="wrap">
|
42 |
|
43 |
<h2 style="float:left;"><?php _e( 'Welcome to Simple Sitemap!', 'simple-sitemap' ); ?></h2>
|
44 |
-
<div style="float:right;margin-top:5px;padding:10px 12px;"><a style="text-decoration:none;"
|
45 |
|
46 |
<div style="clear:both;"></div>
|
47 |
|
48 |
-
<div style="margin
|
49 |
|
50 |
-
<div
|
51 |
-
|
52 |
-
<div style="margin:15px 0 30px 0;width:175px;font-size: 16px;background: #279a97bf;border: 2px #237976a1 solid;border-radius: 2px;"><a style="color: #fff;text-decoration: none;padding: 7px 7px;display: inline-block;" href="http://demo.wpgothemes.com/flexr/simple-sitemap-pro-demo/">Launch Sitemap Demo</a></div>
|
53 |
|
54 |
<h2 style="margin:25px 0 0 0;">Sitemap Shortcodes & Attributes</h2>
|
55 |
<div class="ss-box" style="margin-top:30px;">
|
@@ -61,7 +59,10 @@ class WPGO_Simple_Sitemap_Settings {
|
|
61 |
<p style="margin:0;"><code>[simple-sitemap-group]</code> <?php printf( __( 'Display a list of posts grouped category, OR tags.<br><br>', 'simple-sitemap' ) ); ?>
|
62 |
</p>
|
63 |
|
64 |
-
<p style="margin:0;"><code>[simple-sitemap-
|
|
|
|
|
|
|
65 |
</p>
|
66 |
|
67 |
<p style="margin:0 0 40px 0;"><code>[simple-sitemap-child]</code> <span class="pro" title="Shortcode available in Simple Sitemap Pro"><a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank">PRO</a></span> <?php printf( __( 'Display a list of child pages for a specific parent page.', 'simple-sitemap' ) ); ?>
|
@@ -78,53 +79,60 @@ class WPGO_Simple_Sitemap_Settings {
|
|
78 |
<p style="margin:20px 0 0 0;"><code><b>[simple-sitemap ... ]</b></code></p>
|
79 |
<ul class="shortcode-attributes">
|
80 |
<li><code>types="page"</code> - List of posts for each post type specified, in the order entered.</li>
|
81 |
-
<li><code>
|
82 |
<li><code>title_tag=""</code> - Tag used to wrap each sitemap item in a specified tag.</li>
|
83 |
<li><code>post_type_tag="h2"</code> - Tag used to display the post type label.</li>
|
|
|
|
|
84 |
<li><code>show_excerpt="true"</code> - Optionally show post excerpt (if defined) under each sitemap item.</li>
|
85 |
<li><code>excerpt_tag=""</code> - Tag used to wrap the post excerpt text.</li>
|
|
|
86 |
<li><code>show_label="true"</code> - Optionally show post type label above the sitemap list of posts.</li>
|
87 |
<li><code>links="true"</code> - Show sitemap items as links or plain text.</li>
|
88 |
-
<li><code>
|
89 |
-
<li><code>order="asc"</code> - List posts for each post type in ascending, or descending order.</li>
|
90 |
-
<li><code>orderby="title"</code> - Value to sort posts by (title, date, author etc.). See the full list <a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">here</a>.</li>
|
91 |
-
<li><code>exclude=""</code> - Comma separated list of post IDs to exclude from the sitemap.</li>
|
92 |
-
<li><code>nofollow="0"</code> <?php echo $pro_attribute; ?> - Set to "1" to make sitemap links <a href="https://en.wikipedia.org/wiki/Nofollow" target="_blank">nofollow</a>.</li>
|
93 |
<li><code>include=""</code> <?php echo $pro_attribute; ?> - Comma separated list of post IDs to INCLUDE in the sitemap only. Other posts will be ignored.</li>
|
94 |
<li><code>render=""</code> <?php echo $pro_attribute; ?> - Set to "tab" to display posts in a tabbed layout!</li>
|
|
|
95 |
<li><code>list_icon="true"</code> <?php echo $pro_attribute; ?> - Optionally display HTML bullet icons.</li>
|
96 |
<li><code>separator="false"</code> <?php echo $pro_attribute; ?> - Optionally render separator lines inbetween sitemap items.</li>
|
|
|
97 |
<li><code>horizontal="false"</code> <?php echo $pro_attribute; ?> - Set to "true" to display sitemap items in a flat horizontal list. Great for adding a sitemap to the footer!</li>
|
98 |
<li><code>horizontal_separator=", "</code> <?php echo $pro_attribute; ?> - The character(s) used to separate sitemap items. Use with the 'horizontal' attribute.</li>
|
99 |
-
<li><code>
|
|
|
|
|
100 |
</ul>
|
101 |
|
102 |
<p style="margin:30px 0 0 0;"><code><b>[simple-sitemap-group ... ]</b></code></p>
|
103 |
|
104 |
<ul class="shortcode-attributes">
|
105 |
<li><code>tax="category"</code> - List posts grouped by categories OR tags ('post_tag').</li>
|
106 |
-
<li><code>container_tag="ul"</code> - List type tag, ordered, or unordered.</li>
|
107 |
-
<li><code>term_order="asc"</code> - List taxonomy term labels in ascending, or descending order.</li>
|
108 |
-
<li><code>term_orderby="title"</code> - Order post taxonomy term labels by title etc.</li>
|
109 |
-
<li><code>show_excerpt="true"</code> - Optionally show post excerpt (if defined) under each sitemap item.</li>
|
110 |
<li><code>title_tag=""</code> - Tag used to wrap each sitemap item in a specified tag.</li>
|
|
|
111 |
<li><code>excerpt_tag=""</code> - Tag used to wrap the post excerpt text.</li>
|
112 |
-
<li><code>post_type_tag="h2"</code> - Tag used to display the post type label.</li>
|
113 |
-
<li><code>show_label="true"</code> - Optionally show post type label above the sitemap list of posts.</li>
|
114 |
<li><code>links="true"</code> - Show sitemap items as links or plain text.</li>
|
115 |
-
<li><code>order="asc"</code> - List posts for each post type in ascending, or descending order.</li>
|
116 |
<li><code>orderby="title"</code> - Value to sort posts by (title, date, author etc.). See the full list <a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">here</a>.</li>
|
|
|
|
|
|
|
117 |
<li><code>exclude=""</code> - Comma separated list of post IDs to exclude from the sitemap.</li>
|
|
|
|
|
|
|
|
|
118 |
<li><code>type="post"</code> <?php echo $pro_attribute; ?> - List posts grouped by taxonomy from ANY post type.</li>
|
|
|
|
|
|
|
|
|
119 |
<li><code>exclude_terms=""</code> <?php echo $pro_attribute; ?> - Comma separated list of taxonomy terms to exclude.</li>
|
120 |
-
<li><code>
|
121 |
-
<li><code>
|
|
|
122 |
<li><code>render=""</code> <?php echo $pro_attribute; ?> - Set to "tab" to display posts in a tabbed layout!</li>
|
123 |
-
<li><code>list_icon="true"</code> <?php echo $pro_attribute; ?> - Optionally display HTML bullet icons.</li>
|
124 |
-
<li><code>separator="false"</code> <?php echo $pro_attribute; ?> - Optionally render separator lines inbetween sitemap items.</li>
|
125 |
<li><code>horizontal="false"</code> <?php echo $pro_attribute; ?> - Set to "true" to display sitemap items in a flat horizontal list. Great for adding a sitemap to the footer!</li>
|
126 |
<li><code>horizontal_separator=", "</code> <?php echo $pro_attribute; ?> - The character(s) used to separate sitemap items. Use with the 'horizontal' attribute.</li>
|
127 |
-
<li><code>
|
128 |
</ul>
|
129 |
|
130 |
<br><hr><br><?php printf( __( 'The following (public) registered post types are available: ', 'simple-sitemap' ) ); ?>
|
@@ -147,7 +155,7 @@ class WPGO_Simple_Sitemap_Settings {
|
|
147 |
<th scope="row">Like the plugin?</th>
|
148 |
<td>
|
149 |
<p>Then why not try Simple Sitemap Pro to access powerful additional features. Try risk free today with our <span style="font-weight: bold;">100% money back guarantee!</span></p>
|
150 |
-
<div
|
151 |
</td>
|
152 |
</tr>
|
153 |
|
@@ -155,7 +163,7 @@ class WPGO_Simple_Sitemap_Settings {
|
|
155 |
<th scope="row">Keep this plugin free!</th>
|
156 |
<td>
|
157 |
<div style="float:left;"><a style="margin-right:10px;line-height:0;display:block;" href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank"><img style="box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);width:75px;border-radius:2px;border:2px white solid;" src="<?php echo plugins_url(); ?>/simple-sitemap/images/david.png"></a></div>
|
158 |
-
<p style="margin-top:0;">Hi there, I'm David. I spend a lot of
|
159 |
</td>
|
160 |
</tr>
|
161 |
|
@@ -163,7 +171,7 @@ class WPGO_Simple_Sitemap_Settings {
|
|
163 |
<th scope="row">Read all about it!</th>
|
164 |
<td>
|
165 |
<p>Signup to our plugin newsletter for news and updates about my latest plugins, and be the first to find out about future projects.</p>
|
166 |
-
<div
|
167 |
</td>
|
168 |
</tr>
|
169 |
|
41 |
<div class="wrap">
|
42 |
|
43 |
<h2 style="float:left;"><?php _e( 'Welcome to Simple Sitemap!', 'simple-sitemap' ); ?></h2>
|
44 |
+
<div style="float:right;margin-top:5px;padding:10px 12px;"><a style="text-decoration:none;" title="Check out some of our other plugins" alt="WPGO Plugins Site" href="https://wpgoplugins.com/" target="_blank">wpgoplugins.com</a></div>
|
45 |
|
46 |
<div style="clear:both;"></div>
|
47 |
|
48 |
+
<div style="margin:20px 0 10px;font-size:14px;line-height:1.4em;">What type of sitemap will you create today? There are just so many different types of sitemap to choose from. That's why we recommend checking out the <a href="http://demo.wpgothemes.com/flexr/simple-sitemap-pro-demo/" target="_blank">live demo</a> page to start with to see all the different types of sitemap available!</div>
|
49 |
|
50 |
+
<div><a class="plugin-btn" href="http://demo.wpgothemes.com/flexr/simple-sitemap-pro-demo/" target="_blank">Launch Sitemap Demo</a></div>
|
|
|
|
|
51 |
|
52 |
<h2 style="margin:25px 0 0 0;">Sitemap Shortcodes & Attributes</h2>
|
53 |
<div class="ss-box" style="margin-top:30px;">
|
59 |
<p style="margin:0;"><code>[simple-sitemap-group]</code> <?php printf( __( 'Display a list of posts grouped category, OR tags.<br><br>', 'simple-sitemap' ) ); ?>
|
60 |
</p>
|
61 |
|
62 |
+
<p style="margin:0;"><code>[simple-sitemap-menu]</code> <span class="pro" title="Shortcode available in Simple Sitemap Pro"><a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank">PRO</a></span> <?php printf( __( 'Displays a sitemap based on a nav menu.<br><br>', 'simple-sitemap' ) ); ?>
|
63 |
+
</p>
|
64 |
+
|
65 |
+
<p style="margin:0;"><code>[simple-sitemap-tax]</code> <span class="pro" title="Shortcode available in Simple Sitemap Pro"><a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank">PRO</a></span> <?php printf( __( 'Display a list of post categories (or ANY other registered taxonomies) with various options available such as post count.<br><br>', 'simple-sitemap' ) ); ?>
|
66 |
</p>
|
67 |
|
68 |
<p style="margin:0 0 40px 0;"><code>[simple-sitemap-child]</code> <span class="pro" title="Shortcode available in Simple Sitemap Pro"><a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank">PRO</a></span> <?php printf( __( 'Display a list of child pages for a specific parent page.', 'simple-sitemap' ) ); ?>
|
79 |
<p style="margin:20px 0 0 0;"><code><b>[simple-sitemap ... ]</b></code></p>
|
80 |
<ul class="shortcode-attributes">
|
81 |
<li><code>types="page"</code> - List of posts for each post type specified, in the order entered.</li>
|
82 |
+
<li><code>page_depth="0"</code> - For the 'page' post type allow the indentation depth to be specified.</li>
|
83 |
<li><code>title_tag=""</code> - Tag used to wrap each sitemap item in a specified tag.</li>
|
84 |
<li><code>post_type_tag="h2"</code> - Tag used to display the post type label.</li>
|
85 |
+
<li><code>orderby="title"</code> - Value to sort posts by (title, date, author etc.). See the full list <a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">here</a>.</li>
|
86 |
+
<li><code>order="asc"</code> - List posts for each post type in ascending, or descending order.</li>
|
87 |
<li><code>show_excerpt="true"</code> - Optionally show post excerpt (if defined) under each sitemap item.</li>
|
88 |
<li><code>excerpt_tag=""</code> - Tag used to wrap the post excerpt text.</li>
|
89 |
+
<li><code>exclude=""</code> - Comma separated list of post IDs to exclude from the sitemap.</li>
|
90 |
<li><code>show_label="true"</code> - Optionally show post type label above the sitemap list of posts.</li>
|
91 |
<li><code>links="true"</code> - Show sitemap items as links or plain text.</li>
|
92 |
+
<li><code>container_tag="ul"</code> - List type tag, ordered, or unordered.</li>
|
|
|
|
|
|
|
|
|
93 |
<li><code>include=""</code> <?php echo $pro_attribute; ?> - Comma separated list of post IDs to INCLUDE in the sitemap only. Other posts will be ignored.</li>
|
94 |
<li><code>render=""</code> <?php echo $pro_attribute; ?> - Set to "tab" to display posts in a tabbed layout!</li>
|
95 |
+
<li><code>image="false"</code> <?php echo $pro_attribute; ?> - Optionally show the post featured image (if defined) next to each sitemap item.</li>
|
96 |
<li><code>list_icon="true"</code> <?php echo $pro_attribute; ?> - Optionally display HTML bullet icons.</li>
|
97 |
<li><code>separator="false"</code> <?php echo $pro_attribute; ?> - Optionally render separator lines inbetween sitemap items.</li>
|
98 |
+
<li><code>id="1"</code> <?php echo $pro_attribute; ?> - If multiple tabbed sitemaps displayed this attribute is useful to avoid CSS id conflicts.</li>
|
99 |
<li><code>horizontal="false"</code> <?php echo $pro_attribute; ?> - Set to "true" to display sitemap items in a flat horizontal list. Great for adding a sitemap to the footer!</li>
|
100 |
<li><code>horizontal_separator=", "</code> <?php echo $pro_attribute; ?> - The character(s) used to separate sitemap items. Use with the 'horizontal' attribute.</li>
|
101 |
+
<li><code>nofollow="0"</code> <?php echo $pro_attribute; ?> - Set to "1" to make sitemap links <a href="https://en.wikipedia.org/wiki/Nofollow" target="_blank">nofollow</a>.</li>
|
102 |
+
<li><code>numposts="-1"</code> <?php echo $pro_attribute; ?> - Limit the number of posts outputted in the sitemap.</li>
|
103 |
+
<li><code>visibility="all"</code> <?php echo $pro_attribute; ?> - Control whether private posts/pages are displayed in the sitemap.</li>
|
104 |
</ul>
|
105 |
|
106 |
<p style="margin:30px 0 0 0;"><code><b>[simple-sitemap-group ... ]</b></code></p>
|
107 |
|
108 |
<ul class="shortcode-attributes">
|
109 |
<li><code>tax="category"</code> - List posts grouped by categories OR tags ('post_tag').</li>
|
|
|
|
|
|
|
|
|
110 |
<li><code>title_tag=""</code> - Tag used to wrap each sitemap item in a specified tag.</li>
|
111 |
+
<li><code>show_excerpt="true"</code> - Optionally show post excerpt (if defined) under each sitemap item.</li>
|
112 |
<li><code>excerpt_tag=""</code> - Tag used to wrap the post excerpt text.</li>
|
|
|
|
|
113 |
<li><code>links="true"</code> - Show sitemap items as links or plain text.</li>
|
|
|
114 |
<li><code>orderby="title"</code> - Value to sort posts by (title, date, author etc.). See the full list <a href="https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">here</a>.</li>
|
115 |
+
<li><code>order="asc"</code> - List posts for each post type in ascending, or descending order.</li>
|
116 |
+
<li><code>term_orderby="title"</code> - Order post taxonomy term labels by title etc.</li>
|
117 |
+
<li><code>term_order="asc"</code> - List taxonomy term labels in ascending, or descending order.</li>
|
118 |
<li><code>exclude=""</code> - Comma separated list of post IDs to exclude from the sitemap.</li>
|
119 |
+
<li><code>post_type_tag="h2"</code> - Tag used to display the post type label.</li>
|
120 |
+
<li><code>show_label="true"</code> - Optionally show post type label above the sitemap list of posts.</li>
|
121 |
+
<li><code>page_depth="0"</code> - For the 'page' post type allow the indentation depth to be specified.</li>
|
122 |
+
<li><code>container_tag="ul"</code> - List type tag, ordered, or unordered.</li>
|
123 |
<li><code>type="post"</code> <?php echo $pro_attribute; ?> - List posts grouped by taxonomy from ANY post type.</li>
|
124 |
+
<li><code>separator="false"</code> <?php echo $pro_attribute; ?> - Optionally render separator lines inbetween sitemap items.</li>
|
125 |
+
<li><code>image="false"</code> <?php echo $pro_attribute; ?> - Optionally show the post featured image (if defined) next to each sitemap item.</li>
|
126 |
+
<li><code>list_icon="true"</code> <?php echo $pro_attribute; ?> - Optionally display HTML bullet icons.</li>
|
127 |
+
<li><code>include_terms=""</code> <?php echo $pro_attribute; ?> - Comma separated list of taxonomy terms to include.</li>
|
128 |
<li><code>exclude_terms=""</code> <?php echo $pro_attribute; ?> - Comma separated list of taxonomy terms to exclude.</li>
|
129 |
+
<li><code>visibility="all"</code> <?php echo $pro_attribute; ?> - Control whether private posts/pages are displayed in the sitemap.</li>
|
130 |
+
<li><code>id="1"</code> <?php echo $pro_attribute; ?> - If multiple tabbed sitemaps displayed this attribute is useful to avoid CSS id conflicts.</li>
|
131 |
+
<li><code>numposts="-1"</code> <?php echo $pro_attribute; ?> - Limit the number of posts outputted in the sitemap.</li>
|
132 |
<li><code>render=""</code> <?php echo $pro_attribute; ?> - Set to "tab" to display posts in a tabbed layout!</li>
|
|
|
|
|
133 |
<li><code>horizontal="false"</code> <?php echo $pro_attribute; ?> - Set to "true" to display sitemap items in a flat horizontal list. Great for adding a sitemap to the footer!</li>
|
134 |
<li><code>horizontal_separator=", "</code> <?php echo $pro_attribute; ?> - The character(s) used to separate sitemap items. Use with the 'horizontal' attribute.</li>
|
135 |
+
<li><code>nofollow="0"</code> <?php echo $pro_attribute; ?> - Set to "1" to make sitemap links <a href="https://en.wikipedia.org/wiki/Nofollow" target="_blank">nofollow</a>.</li>
|
136 |
</ul>
|
137 |
|
138 |
<br><hr><br><?php printf( __( 'The following (public) registered post types are available: ', 'simple-sitemap' ) ); ?>
|
155 |
<th scope="row">Like the plugin?</th>
|
156 |
<td>
|
157 |
<p>Then why not try Simple Sitemap Pro to access powerful additional features. Try risk free today with our <span style="font-weight: bold;">100% money back guarantee!</span></p>
|
158 |
+
<div><a class="plugin-btn" target="_blank" href="https://wpgoplugins.com/plugins/simple-sitemap-pro/">Upgrade to Pro</a></div>
|
159 |
</td>
|
160 |
</tr>
|
161 |
|
163 |
<th scope="row">Keep this plugin free!</th>
|
164 |
<td>
|
165 |
<div style="float:left;"><a style="margin-right:10px;line-height:0;display:block;" href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank"><img style="box-shadow:0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);width:75px;border-radius:2px;border:2px white solid;" src="<?php echo plugins_url(); ?>/simple-sitemap/images/david.png"></a></div>
|
166 |
+
<p style="margin-top:0;">Hi there, I'm David. I spend a lot of time developing FREE WordPress plugins like this one. If you like Simple Sitemap and use it on your website please consider making a <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FBAG4ZHA4TTUC" target="_blank">donation</a>, or purchase the <a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank">pro version</a>, to help fund continued development (and to keep Dexter in doggy biscuits!).</p>
|
167 |
</td>
|
168 |
</tr>
|
169 |
|
171 |
<th scope="row">Read all about it!</th>
|
172 |
<td>
|
173 |
<p>Signup to our plugin newsletter for news and updates about my latest plugins, and be the first to find out about future projects.</p>
|
174 |
+
<div><a class="plugin-btn" target="_blank" href="http://eepurl.com/bXZmmD">Subscribe to Newsletter</a></div>
|
175 |
</td>
|
176 |
</tr>
|
177 |
|
css/simple-sitemap-admin.css
CHANGED
@@ -1,5 +1,20 @@
|
|
1 |
/* Admin settings page styles. */
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
.pro {
|
4 |
background: #f5d53e;
|
5 |
margin: 0 0 0 0;
|
1 |
/* Admin settings page styles. */
|
2 |
|
3 |
+
.plugin-btn {
|
4 |
+
display: inline-block;
|
5 |
+
padding: 7px 7px;
|
6 |
+
margin: 15px 0 0 0;
|
7 |
+
font-size: 16px;
|
8 |
+
background: #279a97bf;
|
9 |
+
border: 2px #237976a1 solid;
|
10 |
+
border-radius: 2px;
|
11 |
+
color: #fff;
|
12 |
+
text-decoration: none;
|
13 |
+
}
|
14 |
+
.plugin-btn:hover, .plugin-btn:visited {
|
15 |
+
color: #fff;
|
16 |
+
}
|
17 |
+
|
18 |
.pro {
|
19 |
background: #f5d53e;
|
20 |
margin: 0 0 0 0;
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: dgwyer, wpgoplugins
|
|
3 |
Tags: seo sitemap, html, sitemap, html sitemap, seo, global, sort, shortcode, pages, posts, custom post types, post types, responsive, responsive sitemap
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.9.8
|
6 |
-
Stable tag: 2.
|
7 |
|
8 |
The most popular HTML sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
@@ -78,6 +78,10 @@ No. This plugin is for generating an HTML sitemap only.
|
|
78 |
|
79 |
== Changelog ==
|
80 |
|
|
|
|
|
|
|
|
|
81 |
= 2.7 - March 6, 2019 =
|
82 |
|
83 |
* Added link to sitemap plugin settings page directly from main plugin index page.
|
3 |
Tags: seo sitemap, html, sitemap, html sitemap, seo, global, sort, shortcode, pages, posts, custom post types, post types, responsive, responsive sitemap
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.9.8
|
6 |
+
Stable tag: 2.8
|
7 |
|
8 |
The most popular HTML sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
78 |
|
79 |
== Changelog ==
|
80 |
|
81 |
+
= 2.8 - March 14, 2019 =
|
82 |
+
|
83 |
+
* Updated settings page info.
|
84 |
+
|
85 |
= 2.7 - March 6, 2019 =
|
86 |
|
87 |
* Added link to sitemap plugin settings page directly from main plugin index page.
|
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: 2.
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgoplugins.com
|
9 |
Text Domain: simple-sitemap
|
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: 2.8
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgoplugins.com
|
9 |
Text Domain: simple-sitemap
|