Version Description
- Widget Logic options bug
Download this release
Release Info
Developer | freelancephp |
Plugin | WP External Links (nofollow new tab seo) |
Version | 0.35 |
Comparing to | |
See all releases |
Code changes from version 0.34 to 0.35
- readme.txt +5 -1
- wp-external-links.php +4 -4
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freelancephp
|
|
3 |
Tags: links, external, new window, icon, target, _blank, _new, _top, _none, rel, nofollow, javascript, xhtml strict
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 3.1.3
|
6 |
-
Stable tag: 0.
|
7 |
|
8 |
Manage external links on your site: open in new window/tab, set link icon, add "external", add "nofollow" and more.
|
9 |
|
@@ -60,9 +60,13 @@ In the last case when using the JavaScript method and jQuery the link would stil
|
|
60 |
|
61 |
== Changelog ==
|
62 |
|
|
|
|
|
|
|
63 |
= 0.34 =
|
64 |
* Added option only converting external `<a>` tags to XHTML valid code
|
65 |
* Changed script attribute `language` to `type`
|
|
|
66 |
|
67 |
= 0.33 =
|
68 |
* Added option to fix js problem
|
3 |
Tags: links, external, new window, icon, target, _blank, _new, _top, _none, rel, nofollow, javascript, xhtml strict
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 3.1.3
|
6 |
+
Stable tag: 0.35
|
7 |
|
8 |
Manage external links on your site: open in new window/tab, set link icon, add "external", add "nofollow" and more.
|
9 |
|
60 |
|
61 |
== Changelog ==
|
62 |
|
63 |
+
= 0.35 =
|
64 |
+
* Widget Logic options bug
|
65 |
+
|
66 |
= 0.34 =
|
67 |
* Added option only converting external `<a>` tags to XHTML valid code
|
68 |
* Changed script attribute `language` to `type`
|
69 |
+
* Added support for widget_content filter of the Logic Widget plugin
|
70 |
|
71 |
= 0.33 =
|
72 |
* Added option to fix js problem
|
wp-external-links.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP External Links
|
|
4 |
Plugin URI: http://www.freelancephp.net/wp-external-links-plugin
|
5 |
Description: Manage external links on your site: open in new window/tab, set link icon, add "external", add "nofollow" and more.
|
6 |
Author: Victor Villaverde Laan
|
7 |
-
Version: 0.
|
8 |
Author URI: http://www.freelancephp.net
|
9 |
License: Dual licensed under the MIT and GPL licenses
|
10 |
*/
|
@@ -19,7 +19,7 @@ class WP_External_Links {
|
|
19 |
* Current version
|
20 |
* @var string
|
21 |
*/
|
22 |
-
var $version = '0.
|
23 |
|
24 |
/**
|
25 |
* Used as prefix for options entry and could be used as text domain (for translations)
|
@@ -52,7 +52,7 @@ class WP_External_Links {
|
|
52 |
'no_icon_class' => 'no-ext-icon',
|
53 |
'no_icon_same_window' => 0,
|
54 |
'class_name' => 'ext-link',
|
55 |
-
'
|
56 |
);
|
57 |
|
58 |
/**
|
@@ -558,7 +558,7 @@ jQuery(function( $ ){
|
|
558 |
|
559 |
// set widget_content filter of Widget Logic plugin
|
560 |
$widget_logic_opts = get_option( 'widget_logic' );
|
561 |
-
if ( key_exists( 'widget_logic-options-filter', $widget_logic_opts ) ) {
|
562 |
$this->options[ 'widget_logic_filter' ] = ( $widget_logic_opts[ 'widget_logic-options-filter' ] == 'checked' ) ? 1 : 0;
|
563 |
}
|
564 |
}
|
4 |
Plugin URI: http://www.freelancephp.net/wp-external-links-plugin
|
5 |
Description: Manage external links on your site: open in new window/tab, set link icon, add "external", add "nofollow" and more.
|
6 |
Author: Victor Villaverde Laan
|
7 |
+
Version: 0.35
|
8 |
Author URI: http://www.freelancephp.net
|
9 |
License: Dual licensed under the MIT and GPL licenses
|
10 |
*/
|
19 |
* Current version
|
20 |
* @var string
|
21 |
*/
|
22 |
+
var $version = '0.35';
|
23 |
|
24 |
/**
|
25 |
* Used as prefix for options entry and could be used as text domain (for translations)
|
52 |
'no_icon_class' => 'no-ext-icon',
|
53 |
'no_icon_same_window' => 0,
|
54 |
'class_name' => 'ext-link',
|
55 |
+
'widget_logic_filter' => 0,
|
56 |
);
|
57 |
|
58 |
/**
|
558 |
|
559 |
// set widget_content filter of Widget Logic plugin
|
560 |
$widget_logic_opts = get_option( 'widget_logic' );
|
561 |
+
if ( is_array( $widget_logic_opts ) AND key_exists( 'widget_logic-options-filter', $widget_logic_opts ) ) {
|
562 |
$this->options[ 'widget_logic_filter' ] = ( $widget_logic_opts[ 'widget_logic-options-filter' ] == 'checked' ) ? 1 : 0;
|
563 |
}
|
564 |
}
|