Version Description
Download this release
Release Info
Developer | dgwyer |
Plugin | Simple Sitemap – Automatically Generate a Responsive Sitemap |
Version | 1.86 |
Comparing to | |
See all releases |
Code changes from version 1.85 to 1.86
- readme.txt +6 -2
- simple-sitemap.php +4 -1
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: dgwyer
|
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: 2.7
|
5 |
-
Tested up to: 4.5
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
The simplest responsive HTML sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
@@ -56,6 +56,10 @@ Please <a href="https://wordpress.org/support/view/plugin-reviews/simple-sitemap
|
|
56 |
|
57 |
== Changelog ==
|
58 |
|
|
|
|
|
|
|
|
|
59 |
*1.85 update*
|
60 |
|
61 |
* Updated plugin description.
|
2 |
Contributors: dgwyer
|
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: 2.7
|
5 |
+
Tested up to: 4.5.2
|
6 |
+
Stable tag: 1.86
|
7 |
|
8 |
The simplest responsive HTML sitemap available for WordPress! No setup required. Flexible customization options available.
|
9 |
|
56 |
|
57 |
== Changelog ==
|
58 |
|
59 |
+
*1.86 update*
|
60 |
+
|
61 |
+
* Added links to 'Pro' version.
|
62 |
+
|
63 |
*1.85 update*
|
64 |
|
65 |
* Updated plugin description.
|
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
|
@@ -528,6 +528,9 @@ function wpss_plugin_action_links( $links, $file ) {
|
|
528 |
$posk_links = '<a href="' . esc_url(get_admin_url() . 'options-general.php?page=simple-sitemap/simple-sitemap.php' ) . '">' . __( 'Settings', 'simple-sitemap' ) . '</a>';
|
529 |
// make the 'Settings' link appear first
|
530 |
array_unshift( $links, $posk_links );
|
|
|
|
|
|
|
531 |
}
|
532 |
|
533 |
return $links;
|
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.86
|
7 |
Author: David Gwyer
|
8 |
Author URI: http://www.wpgothemes.com
|
9 |
Text Domain: simple-sitemap
|
528 |
$posk_links = '<a href="' . esc_url(get_admin_url() . 'options-general.php?page=simple-sitemap/simple-sitemap.php' ) . '">' . __( 'Settings', 'simple-sitemap' ) . '</a>';
|
529 |
// make the 'Settings' link appear first
|
530 |
array_unshift( $links, $posk_links );
|
531 |
+
|
532 |
+
// add a link to pro plugin
|
533 |
+
$links[] = '<a href="https://wpgoplugins.com/plugins/simple-sitemap-pro/" target="_blank" title="Upgrade to PRO"><span class="dashicons dashicons-awards"></span></a>';
|
534 |
}
|
535 |
|
536 |
return $links;
|