Version Description
- 2019-12-27
- improved link detection regex
Download this release
Release Info
| Developer | WebFactory |
| Plugin | |
| Version | 2.43 |
| Comparing to | |
| See all releases | |
Code changes from version 2.42 to 2.43
- includes/admin/class-wpel-settings-page.php +2 -0
- includes/class-wpel-front.php +1 -1
- readme.txt +6 -2
- wp-external-links.php +1 -1
includes/admin/class-wpel-settings-page.php
CHANGED
|
@@ -109,7 +109,9 @@ final class WPEL_Settings_Page extends WPRun_Base_1x0x0
|
|
| 109 |
|
| 110 |
$res = self::add_plugin_featured('wp-reset', $res);
|
| 111 |
$res = self::add_plugin_featured('wp-force-ssl', $res);
|
|
|
|
| 112 |
$res = self::add_plugin_featured('eps-301-redirects', $res);
|
|
|
|
| 113 |
|
| 114 |
return $res;
|
| 115 |
} // plugins_api_result
|
| 109 |
|
| 110 |
$res = self::add_plugin_featured('wp-reset', $res);
|
| 111 |
$res = self::add_plugin_featured('wp-force-ssl', $res);
|
| 112 |
+
$res = self::add_plugin_featured('sticky-menu-or-anything-on-scroll', $res);
|
| 113 |
$res = self::add_plugin_featured('eps-301-redirects', $res);
|
| 114 |
+
$res = self::add_plugin_featured('simple-author-box', $res);
|
| 115 |
|
| 116 |
return $res;
|
| 117 |
} // plugins_api_result
|
includes/class-wpel-front.php
CHANGED
|
@@ -125,7 +125,7 @@ final class WPEL_Front extends WPRun_Base_1x0x0
|
|
| 125 |
*/
|
| 126 |
$content = apply_filters( '_wpel_before_filter', $content );
|
| 127 |
|
| 128 |
-
$regexp_link = '/<a[^A-Za-z](.*?)>(.*?)<\/a[\s+]*>/is';
|
| 129 |
|
| 130 |
$content = preg_replace_callback( $regexp_link, $this->get_callback( 'match_link' ), $content );
|
| 131 |
|
| 125 |
*/
|
| 126 |
$content = apply_filters( '_wpel_before_filter', $content );
|
| 127 |
|
| 128 |
+
$regexp_link = '/<a[^A-Za-z>](.*?)>(.*?)<\/a[\s+]*>/is';
|
| 129 |
|
| 130 |
$content = preg_replace_callback( $regexp_link, $this->get_callback( 'match_link' ), $content );
|
| 131 |
|
readme.txt
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
Contributors: WebFactory, UnderConstructionPage, googlemapswidget, wpreset
|
| 3 |
Tags: new window, new tab, external links, nofollow, noopener, ugc, sponsored, follow, dofollow, seo, noreferrer, internal links, target, links, link, internal link, external link
|
| 4 |
Requires at least: 4.2
|
| 5 |
-
Tested up to: 5.
|
| 6 |
Requires PHP: 5.3
|
| 7 |
-
Stable tag: 2.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -243,6 +243,10 @@ See [FAQ](https://wordpress.org/plugins/wp-external-links/faq/) for more info.
|
|
| 243 |
|
| 244 |
== Changelog ==
|
| 245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
= 2.42 =
|
| 247 |
* 2019-12-18
|
| 248 |
* fixed various undefined variable notices
|
| 2 |
Contributors: WebFactory, UnderConstructionPage, googlemapswidget, wpreset
|
| 3 |
Tags: new window, new tab, external links, nofollow, noopener, ugc, sponsored, follow, dofollow, seo, noreferrer, internal links, target, links, link, internal link, external link
|
| 4 |
Requires at least: 4.2
|
| 5 |
+
Tested up to: 5.4
|
| 6 |
Requires PHP: 5.3
|
| 7 |
+
Stable tag: 2.43
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 243 |
|
| 244 |
== Changelog ==
|
| 245 |
|
| 246 |
+
= 2.43 =
|
| 247 |
+
* 2019-12-27
|
| 248 |
+
* improved link detection regex
|
| 249 |
+
|
| 250 |
= 2.42 =
|
| 251 |
* 2019-12-18
|
| 252 |
* fixed various undefined variable notices
|
wp-external-links.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: WP External Links
|
| 4 |
-
* Version: 2.
|
| 5 |
* Plugin URI: https://wordpress.org/plugins/wp-external-links/
|
| 6 |
* Description: Open external links in a new tab or window, control "nofollow" and "noopener", set font icon; SEO friendly.
|
| 7 |
* Author: WebFactory Ltd
|
| 1 |
<?php
|
| 2 |
/**
|
| 3 |
* Plugin Name: WP External Links
|
| 4 |
+
* Version: 2.43
|
| 5 |
* Plugin URI: https://wordpress.org/plugins/wp-external-links/
|
| 6 |
* Description: Open external links in a new tab or window, control "nofollow" and "noopener", set font icon; SEO friendly.
|
| 7 |
* Author: WebFactory Ltd
|
