Version Description
- Fixed a PHP warning caused by some themes
Download this release
Release Info
Developer | markjaquith |
Plugin | Page Links To |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- classes/plugin.php +1 -1
- page-links-to.php +1 -1
- readme.txt +4 -1
classes/plugin.php
CHANGED
@@ -647,7 +647,7 @@ class CWS_PageLinksTo {
|
|
647 |
* @param array $pages Array of WP_Post objects.
|
648 |
* @return string the modified HTML block.
|
649 |
*/
|
650 |
-
function wp_list_pages( $output, $_args, $pages ) {
|
651 |
$highlight = false;
|
652 |
|
653 |
$this_url = esc_url_raw( set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']));
|
647 |
* @param array $pages Array of WP_Post objects.
|
648 |
* @return string the modified HTML block.
|
649 |
*/
|
650 |
+
function wp_list_pages( $output, $_args = array(), $pages = array() ) {
|
651 |
$highlight = false;
|
652 |
|
653 |
$this_url = esc_url_raw( set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']));
|
page-links-to.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Page Links To
|
8 |
* Plugin URI: http://txfx.net/wordpress-plugins/page-links-to/
|
9 |
* Description: Allows you to point WordPress pages or posts to a URL of your choosing. Good for setting up navigational links to non-WP sections of your site or to off-site resources.
|
10 |
-
* Version: 3.0.
|
11 |
* Author: Mark Jaquith
|
12 |
* Author URI: https://coveredweb.com/
|
13 |
* Text Domain: page-links-to
|
7 |
* Plugin Name: Page Links To
|
8 |
* Plugin URI: http://txfx.net/wordpress-plugins/page-links-to/
|
9 |
* Description: Allows you to point WordPress pages or posts to a URL of your choosing. Good for setting up navigational links to non-WP sections of your site or to off-site resources.
|
10 |
+
* Version: 3.0.1
|
11 |
* Author: Mark Jaquith
|
12 |
* Author URI: https://coveredweb.com/
|
13 |
* Text Domain: page-links-to
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://txfx.net/wordpress-plugins/donate
|
|
5 |
Tags: page, redirect, link, external link, repoint
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 4.9.6
|
8 |
-
Stable tag: 3.0.
|
9 |
|
10 |
Lets you make a WordPress page (or port or other content type) link to a URL of your choosing (on your site, or on another site), instead of its normal WordPress URL.
|
11 |
|
@@ -77,6 +77,9 @@ You can contribute (or report bugs) on [Github](https://github.com/markjaquith/p
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
80 |
= 3.0.0 =
|
81 |
* Quick page link adding UI
|
82 |
* External link indicator
|
5 |
Tags: page, redirect, link, external link, repoint
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 4.9.6
|
8 |
+
Stable tag: 3.0.1
|
9 |
|
10 |
Lets you make a WordPress page (or port or other content type) link to a URL of your choosing (on your site, or on another site), instead of its normal WordPress URL.
|
11 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 3.0.1 =
|
81 |
+
* Fixed a PHP warning caused by some themes
|
82 |
+
|
83 |
= 3.0.0 =
|
84 |
* Quick page link adding UI
|
85 |
* External link indicator
|