WP External Links (nofollow new tab seo) - Version 2.3

Version Description

  • 2019-06-14
    • bug fixes
    • 40,000 installations hit on 2018-03-13
Download this release

Release Info

Developer WebFactory
Plugin Icon 128x128 WP External Links (nofollow new tab seo)
Version 2.3
Comparing to
See all releases

Code changes from version 2.2.0 to 2.3

Files changed (55) hide show
  1. includes/.htaccess +0 -1
  2. includes/admin/class-wpel-network-page.php +2 -4
  3. includes/admin/class-wpel-settings-page.php +4 -5
  4. includes/admin/network-fields/class-wpel-network-admin-fields.php +2 -4
  5. includes/admin/network-fields/class-wpel-network-fields.php +2 -4
  6. includes/admin/settings-fields/class-wpel-admin-fields.php +2 -4
  7. includes/admin/settings-fields/class-wpel-exceptions-fields.php +2 -4
  8. includes/admin/settings-fields/class-wpel-excluded-link-fields.php +2 -4
  9. includes/admin/settings-fields/class-wpel-external-link-fields.php +2 -4
  10. includes/admin/settings-fields/class-wpel-internal-link-fields.php +2 -4
  11. includes/admin/settings-fields/class-wpel-link-fields-base.php +3 -5
  12. includes/class-wpel-front-ignore.php +2 -4
  13. includes/class-wpel-front.php +3 -5
  14. includes/class-wpel-link.php +2 -4
  15. includes/class-wpel-plugin.php +2 -4
  16. includes/class-wpel-register-scripts.php +2 -4
  17. includes/class-wpel-template-tags.php +2 -4
  18. includes/class-wpel-update.php +7 -4
  19. includes/register-hooks/class-wpel-activation.php +2 -4
  20. includes/register-hooks/class-wpel-uninstall.php +2 -4
  21. languages/wp-external-links-de_DE.mo +0 -0
  22. languages/wp-external-links-de_DE.po +0 -444
  23. libs/fwp/class-fwp-debug.php +2 -4
  24. libs/fwp/class-fwp-html-element.php +2 -4
  25. libs/fwp/class-fwp-html-fields.php +2 -4
  26. libs/fwp/component-bases/class-fwp-plugin-base.php +18 -4
  27. libs/fwp/component-bases/class-fwp-register-hook-base.php +2 -4
  28. libs/fwp/component-bases/class-fwp-settings-section-base.php +2 -4
  29. libs/fwp/component-bases/class-fwp-template-tag-base.php +2 -4
  30. libs/fwp/filter-hooks/class-fwp-final-output.php +2 -4
  31. libs/fwp/filter-hooks/class-fwp-widget-output.php +2 -4
  32. libs/wprun/class-wprun-autoloader.php +2 -4
  33. libs/wprun/class-wprun-base.php +2 -4
  34. public/css/wpel-admin.css +8 -1
  35. readme.txt +29 -37
  36. screenshot-1.png +0 -0
  37. screenshot-2.png +0 -0
  38. screenshot-3.png +0 -0
  39. templates/network-page/help-tabs/under-construction.php +2 -4
  40. templates/network-page/main.php +2 -4
  41. templates/network-page/tab-contents/network-admin-settings.php +2 -4
  42. templates/network-page/tab-contents/network-settings.php +2 -4
  43. templates/partials/nav-tabs.php +12 -4
  44. templates/partials/tab-contents/fields-default.php +2 -4
  45. templates/partials/tab-contents/support.php +15 -6
  46. templates/requirements-notice.php +2 -4
  47. templates/settings-page/help-tabs/data-attributes.php +2 -4
  48. templates/settings-page/help-tabs/under-construction.php +2 -4
  49. templates/settings-page/main.php +2 -4
  50. templates/settings-page/tab-contents/admin.php +2 -4
  51. templates/settings-page/tab-contents/exceptions.php +2 -4
  52. templates/settings-page/tab-contents/excluded-links.php +2 -4
  53. templates/settings-page/tab-contents/external-links.php +2 -4
  54. templates/settings-page/tab-contents/internal-links.php +2 -4
  55. wp-external-links.php +6 -19
includes/.htaccess DELETED
@@ -1 +0,0 @@
1
- deny from all
 
includes/admin/class-wpel-network-page.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Network_Page extends WPRun_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Network_Page extends WPRun_Base_1x0x0
includes/admin/class-wpel-settings-page.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Settings_Page extends WPRun_Base_1x0x0
@@ -48,7 +46,7 @@ final class WPEL_Settings_Page extends WPRun_Base_1x0x0
48
  ),
49
  'internal-links' => array(
50
  'title' => __( 'Internal Links', 'wp-external-links' ),
51
- 'icon' => '<i class="fa fa-square-o" aria-hidden="true"></i>',
52
  'fields' => $fields_objects[ 'internal-links' ],
53
  ),
54
  'excluded-links' => array(
@@ -206,6 +204,7 @@ final class WPEL_Settings_Page extends WPRun_Base_1x0x0
206
  protected function add_help_tabs()
207
  {
208
  $screen = get_current_screen();
 
209
 
210
  $screen->add_help_tab( array(
211
  'id' => 'under-construction',
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Settings_Page extends WPRun_Base_1x0x0
46
  ),
47
  'internal-links' => array(
48
  'title' => __( 'Internal Links', 'wp-external-links' ),
49
+ 'icon' => '<i class="fa fa-link" aria-hidden="true"></i>',
50
  'fields' => $fields_objects[ 'internal-links' ],
51
  ),
52
  'excluded-links' => array(
204
  protected function add_help_tabs()
205
  {
206
  $screen = get_current_screen();
207
+ return;
208
 
209
  $screen->add_help_tab( array(
210
  'id' => 'under-construction',
includes/admin/network-fields/class-wpel-network-admin-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Network_Admin_Fields extends FWP_Settings_Section_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Network_Admin_Fields extends FWP_Settings_Section_Base_1x0x0
includes/admin/network-fields/class-wpel-network-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Network_Fields extends FWP_Settings_Section_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Network_Fields extends FWP_Settings_Section_Base_1x0x0
includes/admin/settings-fields/class-wpel-admin-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Admin_Fields extends FWP_Settings_Section_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Admin_Fields extends FWP_Settings_Section_Base_1x0x0
includes/admin/settings-fields/class-wpel-exceptions-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Exceptions_Fields extends FWP_Settings_Section_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Exceptions_Fields extends FWP_Settings_Section_Base_1x0x0
includes/admin/settings-fields/class-wpel-excluded-link-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Excluded_Link_Fields extends WPEL_Link_Fields_Base
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Excluded_Link_Fields extends WPEL_Link_Fields_Base
includes/admin/settings-fields/class-wpel-external-link-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_External_Link_Fields extends WPEL_Link_Fields_Base
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_External_Link_Fields extends WPEL_Link_Fields_Base
includes/admin/settings-fields/class-wpel-internal-link-fields.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Internal_Link_Fields extends WPEL_Link_Fields_Base
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Internal_Link_Fields extends WPEL_Link_Fields_Base
includes/admin/settings-fields/class-wpel-link-fields-base.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  abstract class WPEL_Link_Fields_Base extends FWP_Settings_Section_Base_1x0x0
@@ -181,7 +179,7 @@ abstract class WPEL_Link_Fields_Base extends FWP_Settings_Section_Base_1x0x0
181
 
182
  echo '<p class="description">'
183
  . __( 'Use this <code>{title}</code> for the original title value '
184
- .'and <code>{text}</code> for the link text as shown on the page', 'wp-external-links' )
185
  .'</p>';
186
  }
187
 
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  abstract class WPEL_Link_Fields_Base extends FWP_Settings_Section_Base_1x0x0
179
 
180
  echo '<p class="description">'
181
  . __( 'Use this <code>{title}</code> for the original title value '
182
+ .'and <code>{text}</code> for the link text (or <code>{text_clean}</code> for text stripped of HTML) as shown on the page', 'wp-external-links' )
183
  .'</p>';
184
  }
185
 
includes/class-wpel-front-ignore.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Front_Ignore extends WPRun_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Front_Ignore extends WPRun_Base_1x0x0
includes/class-wpel-front.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Front extends WPRun_Base_1x0x0
@@ -276,7 +274,7 @@ final class WPEL_Front extends WPRun_Base_1x0x0
276
  if ( $title_format ) {
277
  $title = $link->get_attr( 'title' );
278
  $text = $link->get_content();
279
- $new_title = str_replace( array( '{title}', '{text}' ), array( esc_attr( $title ), esc_attr( $text ) ), $title_format );
280
 
281
  if ( $new_title ) {
282
  $link->set_attr( 'title', $new_title );
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Front extends WPRun_Base_1x0x0
274
  if ( $title_format ) {
275
  $title = $link->get_attr( 'title' );
276
  $text = $link->get_content();
277
+ $new_title = str_replace( array( '{title}', '{text}', '{text_clean}' ), array( esc_attr( $title ), esc_attr( $text ), esc_attr( strip_tags( $text ) ) ), $title_format );
278
 
279
  if ( $new_title ) {
280
  $link->set_attr( 'title', $new_title );
includes/class-wpel-link.php CHANGED
@@ -7,10 +7,8 @@
7
  *
8
  * @package WPEL
9
  * @category WordPress Plugin
10
- * @version 2.2.0
11
- * @author Victor Villaverde Laan
12
- * @link http://www.finewebdev.com
13
- * @link https://github.com/freelancephp/WP-External-Links
14
  * @license Dual licensed under the MIT and GPLv2+ licenses
15
  */
16
  class WPEL_Link extends FWP_HTML_Element_1x0x0
7
  *
8
  * @package WPEL
9
  * @category WordPress Plugin
10
+ * @version 2.3
11
+ * @link https://www.webfactoryltd.com/
 
 
12
  * @license Dual licensed under the MIT and GPLv2+ licenses
13
  */
14
  class WPEL_Link extends FWP_HTML_Element_1x0x0
includes/class-wpel-plugin.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Plugin extends FWP_Plugin_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Plugin extends FWP_Plugin_Base_1x0x0
includes/class-wpel-register-scripts.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Register_Scripts extends WPRun_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Register_Scripts extends WPRun_Base_1x0x0
includes/class-wpel-template-tags.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Template_Tags extends FWP_Template_Tag_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Template_Tags extends FWP_Template_Tag_Base_1x0x0
includes/class-wpel-update.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Update extends WPRun_Base_1x0x0
@@ -43,6 +41,11 @@ final class WPEL_Update extends WPRun_Base_1x0x0
43
  if ( $current_version !== $saved_version ) {
44
  update_option( 'wpel-version', $current_version );
45
  }
 
 
 
 
 
46
  }
47
 
48
  /**
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Update extends WPRun_Base_1x0x0
41
  if ( $current_version !== $saved_version ) {
42
  update_option( 'wpel-version', $current_version );
43
  }
44
+
45
+ $first_install = get_option( 'wpel-first-install', 0 );
46
+ if ( empty( $first_install ) ) {
47
+ update_option( 'wpel-first-install', current_time( 'timestamp' ) );
48
+ }
49
  }
50
 
51
  /**
includes/register-hooks/class-wpel-activation.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Activation extends FWP_Register_Hook_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Activation extends FWP_Register_Hook_Base_1x0x0
includes/register-hooks/class-wpel-uninstall.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  final class WPEL_Uninstall extends FWP_Register_Hook_Base_1x0x0
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  final class WPEL_Uninstall extends FWP_Register_Hook_Base_1x0x0
languages/wp-external-links-de_DE.mo DELETED
Binary file
languages/wp-external-links-de_DE.po DELETED
@@ -1,444 +0,0 @@
1
- # Translation of Development (trunk) in German
2
- # This file is distributed under the same license as the Development (trunk) package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2016-02-27 09:47:58+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/2.1.0-alpha\n"
11
- "Project-Id-Version: Development (trunk)\n"
12
-
13
- #: includes/admin/class-wpel-network-page.php:38
14
- #: includes/admin/network-fields/class-wpel-network-fields.php:26
15
- msgid "Multi Site Settings"
16
- msgstr "Multisite-Einstellungen"
17
-
18
- #: includes/admin/class-wpel-network-page.php:48
19
- #: includes/admin/class-wpel-settings-page.php:70
20
- #: templates/partials/tab-contents/support.php:17
21
- msgid "Support"
22
- msgstr "Support"
23
-
24
- #: includes/admin/class-wpel-network-page.php:185
25
- #: includes/admin/class-wpel-settings-page.php:233
26
- #: templates/network-page/help-tabs/under-construction.php:14
27
- #: templates/settings-page/help-tabs/under-construction.php:14
28
- msgid "Under Construction"
29
- msgstr "In Arbeit"
30
-
31
- #: includes/admin/class-wpel-settings-page.php:50
32
- #: includes/admin/settings-fields/class-wpel-internal-link-fields.php:33
33
- msgid "Internal Links"
34
- msgstr "Interne Links"
35
-
36
- #: includes/admin/class-wpel-settings-page.php:55
37
- #: includes/admin/settings-fields/class-wpel-excluded-link-fields.php:33
38
- msgid "Excluded Links"
39
- msgstr "Ausgeschlossene Links"
40
-
41
- #: includes/admin/class-wpel-settings-page.php:60
42
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:26
43
- msgid "Exceptions"
44
- msgstr "Ausnahmen"
45
-
46
- #: includes/admin/class-wpel-settings-page.php:238
47
- msgid "Data Attributes"
48
- msgstr "Data Attributes"
49
-
50
- #: includes/admin/network-fields/class-wpel-network-admin-fields.php:26
51
- msgid "Network Admin Settings"
52
- msgstr "Netzwerk-Admin-Einstellungen"
53
-
54
- #: includes/admin/network-fields/class-wpel-network-admin-fields.php:29
55
- msgid "Main Network Admin Menu:"
56
- msgstr "Netzwerk-Admin-Menü:"
57
-
58
- #: includes/admin/network-fields/class-wpel-network-admin-fields.php:80
59
- msgid "Create own network admin menu for this plugin"
60
- msgstr "Erstelle eigenen Netzwerk-Admin-Menüpunkt für das Plugin"
61
-
62
- #: includes/admin/network-fields/class-wpel-network-admin-fields.php:86
63
- #: includes/admin/settings-fields/class-wpel-admin-fields.php:50
64
- msgid "Or else it will be added to the \"Settings\" menu"
65
- msgstr "Andernfalls wird es unter \"Einstellungen\" angezeigt."
66
-
67
- #: includes/admin/network-fields/class-wpel-network-admin-fields.php:105
68
- #: includes/admin/settings-fields/class-wpel-admin-fields.php:69
69
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:212
70
- #: includes/admin/settings-fields/class-wpel-external-link-fields.php:85
71
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:301
72
- msgid "Something went wrong. One or more values were invalid."
73
- msgstr "Ein Fehler ist aufgetreten. Ein oder mehrere Werte sind ungültig."
74
-
75
- #: includes/admin/network-fields/class-wpel-network-fields.php:29
76
- msgid "Capability for individual sites:"
77
- msgstr "Berechtigung für individuelle Sites:"
78
-
79
- #: includes/admin/network-fields/class-wpel-network-fields.php:33
80
- msgid "Use the settings of this site as default for new sites:"
81
- msgstr "Verwende die Einstellungen dieser Site als Standard für neue Sites:"
82
-
83
- #: includes/admin/network-fields/class-wpel-network-fields.php:89
84
- msgid "Site Admins and Super Admins"
85
- msgstr "Admins oder Super Admins"
86
-
87
- #: includes/admin/network-fields/class-wpel-network-fields.php:90
88
- msgid "Only Super Admins"
89
- msgstr "Nur Super-Admins"
90
-
91
- #: includes/admin/network-fields/class-wpel-network-fields.php:100
92
- msgid "- none -"
93
- msgstr "- keine -"
94
-
95
- #: includes/admin/settings-fields/class-wpel-admin-fields.php:29
96
- msgid "Main Admin Menu:"
97
- msgstr "Admin-Menü:"
98
-
99
- #: includes/admin/settings-fields/class-wpel-admin-fields.php:44
100
- msgid "Create own admin menu for this plugin"
101
- msgstr "Erstelle eigenen Admin-Menüpunkt für das Plugin"
102
-
103
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:29
104
- msgid "Apply settings on:"
105
- msgstr "Einstellungen anwenden auf:"
106
-
107
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:49
108
- msgid "Include external links by URL:"
109
- msgstr "Externe URLs einschließen: "
110
-
111
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:52
112
- msgid "Exclude external links by URL:"
113
- msgstr "Externe URLs ausschließen:"
114
-
115
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:55
116
- msgid "Own settings for excluded links:"
117
- msgstr "Ausgeschlossene Links:"
118
-
119
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:58
120
- msgid "Skip <code>&lt;script&gt;</code>:"
121
- msgstr "Ignoriere <code>&lt;script&gt;</code>:"
122
-
123
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:62
124
- msgid "Skip <code>mailto</code> links:"
125
- msgstr "Ignoriere <code>mailto</code>-Links:"
126
-
127
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:77
128
- msgid "All contents (the whole page)"
129
- msgstr "Alle Inhalte (die ganze Seite)"
130
-
131
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:155
132
- msgid "Treat excluded links as internal links"
133
- msgstr "Behandle ausgeschlossene Links wie interne Links"
134
-
135
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:163
136
- msgid "Own settings for excluded links <span class=\"description\">(extra tab)</span>"
137
- msgstr "Eigene Einstellungen <span class=\"description\">(extra Tab)</span>"
138
-
139
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:174
140
- msgid "Ignore all links in <code>&lt;script&gt;</code> blocks"
141
- msgstr "Ignoriere Links in <code>&lt;script&gt;</code>-Blöcken"
142
-
143
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:184
144
- msgid "Ignore all <code>mailto</code> links"
145
- msgstr "Ignoriere <code>mailto</code>-Links"
146
-
147
- #: includes/admin/settings-fields/class-wpel-excluded-link-fields.php:25
148
- msgid "Settings for excluded links:"
149
- msgstr "Einstellungen für ausgeschlossene Links:"
150
-
151
- #: includes/admin/settings-fields/class-wpel-excluded-link-fields.php:26
152
- msgid "Open excluded links:"
153
- msgstr "Öffne ausgeschlossene Links:"
154
-
155
- #: includes/admin/settings-fields/class-wpel-external-link-fields.php:25
156
- msgid "Settings for external links:"
157
- msgstr "Einstellungen für externe Links:"
158
-
159
- #: includes/admin/settings-fields/class-wpel-external-link-fields.php:27
160
- msgid "Open external links:"
161
- msgstr "Öffne externe Links:"
162
-
163
- #: includes/admin/settings-fields/class-wpel-internal-link-fields.php:25
164
- msgid "Settings for internal links:"
165
- msgstr "Einstellungen für interne Links:"
166
-
167
- #: includes/admin/settings-fields/class-wpel-internal-link-fields.php:26
168
- msgid "Open internal links:"
169
- msgstr "Öffne interne Links:"
170
-
171
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:24
172
- msgid "Settings for links:"
173
- msgstr "Einstellungen für Links:"
174
-
175
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:28
176
- msgid "Open links:"
177
- msgstr "Öffne Links:"
178
-
179
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:37
180
- msgid "Set <code>follow</code> or <code>nofollow</code>:"
181
- msgstr "Setze <code>follow</code> oder <code>nofollow</code>:"
182
-
183
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:56
184
- msgid "Set <code>title</code>:"
185
- msgstr "Setze <code>title</code>:"
186
-
187
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:61
188
- msgid "Add CSS class(es):"
189
- msgstr "CSS-Klasse(n):"
190
-
191
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:65
192
- msgid "Choose icon type:"
193
- msgstr "Wähle Icon-Typ:"
194
-
195
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:69
196
- msgid "Choose icon image:"
197
- msgstr "Wähle Icon-Datei:"
198
-
199
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:74
200
- msgid "Choose dashicon:"
201
- msgstr "Wähle Dashicon:"
202
-
203
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:78
204
- msgid "Choose FA icon:"
205
- msgstr "Wähle FA-Icon:"
206
-
207
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:82
208
- msgid "Icon position:"
209
- msgstr "Icon-Position:"
210
-
211
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:87
212
- msgid "Skip icon with <code>&lt;img&gt;</code>:"
213
- msgstr "Kein Icon für <code>&lt;img&gt;</code>-Links:"
214
-
215
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:102
216
- msgid "Apply these settings"
217
- msgstr "Einstellungen aktivieren"
218
-
219
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:113
220
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:137
221
- msgid "- keep as is -"
222
- msgstr "- keine Änderung -"
223
-
224
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:114
225
- msgid "in the same window, tab or frame"
226
- msgstr "im selben Fenster/Tab oder Frame"
227
-
228
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:115
229
- msgid "each in a separate new window or tab"
230
- msgstr "jeden in neuem Fenster/Tab"
231
-
232
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:116
233
- msgid "all in the same new window or tab"
234
- msgstr "alle im selben Fenster/Tab"
235
-
236
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:117
237
- msgid "in the topmost frame"
238
- msgstr "im obersten Frame"
239
-
240
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:126
241
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:148
242
- msgid "Overwrite existing values."
243
- msgstr "Überschreibe vorhandene Werte."
244
-
245
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:138
246
- msgid "follow"
247
- msgstr "follow"
248
-
249
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:139
250
- msgid "nofollow"
251
- msgstr "nofollow"
252
-
253
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:158
254
- msgid "Add <code>\"noopener\"</code>"
255
- msgstr "Füge <code>\"noopener\"</code> hinzu"
256
-
257
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:168
258
- msgid "Add <code>\"noreferrer\"</code>"
259
- msgstr "Füge <code>\"noreferrer\"</code> hinzu"
260
-
261
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:198
262
- msgid "- no icon -"
263
- msgstr "- kein Icon -"
264
-
265
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:199
266
- msgid "Image"
267
- msgstr "Icon-Datei"
268
-
269
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:200
270
- msgid "Dashicon"
271
- msgstr "Dashicon"
272
-
273
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:201
274
- msgid "Font Awesome"
275
- msgstr "FontAwesome"
276
-
277
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:265
278
- msgid "Left side of the link"
279
- msgstr "vor dem Link"
280
-
281
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:266
282
- msgid "Right side of the link"
283
- msgstr "nach dem Link"
284
-
285
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:275
286
- msgid "No icon for links already containing an <code>&lt;img&gt;</code>-tag."
287
- msgstr "Kein Icon für Links mit <code>&lt;img&gt;</code>-Tag."
288
-
289
- #: templates/network-page/help-tabs/under-construction.php:16
290
- #: templates/settings-page/help-tabs/under-construction.php:16
291
- msgid "Still working on the documentation..."
292
- msgstr "Wir arbeiten hart an der Dokumentation..."
293
-
294
- #: templates/partials/tab-contents/support.php:19
295
- msgid "Documentation"
296
- msgstr "Dokumentation"
297
-
298
- #: templates/partials/tab-contents/support.php:20
299
- msgid "Take a look at the <a href=\"#\" data-wpel-help>help section</a> for documentation"
300
- msgstr "Wirf einen Blick in die <a href=\"#\" data-wpel-help>Hilfe-Sektion</a> für weiterführende Dokumentation."
301
-
302
- #: templates/partials/tab-contents/support.php:22
303
- msgid "FAQ"
304
- msgstr "FAQ"
305
-
306
- #: templates/partials/tab-contents/support.php:23
307
- msgid "On the <a href=\"https://wordpress.org/plugins/wp-external-links/faq/\" target=\"_blank\">FAQ page</a> you can find some additional tips & trics."
308
- msgstr "Auf der <a href=\"https://wordpress.org/plugins/wp-external-links/faq/\" target=\"_blank\">FAQ-Seite</a> des Plugins findest du weitere Tipps & Informationen."
309
-
310
- #: templates/partials/tab-contents/support.php:25
311
- msgid "Reported issues"
312
- msgstr "Bisher gemeldete Fälle"
313
-
314
- #: templates/partials/tab-contents/support.php:26
315
- msgid "When you experience problems using this plugin please look if your problem was <a href=\"https://wordpress.org/support/plugin/wp-external-links\" target=\"_blank\">already reported</a>."
316
- msgstr "Wenn du Probleme bei der Verwendung des Plugins hast besuche bitte unser Support-Forum und prüfe, ob das/ein ähnliches Problem nicht <a href=\"https://wordpress.org/support/plugin/wp-external-links\" target=\"_blank\">bereits gemeldet</a> wurde."
317
-
318
- #: templates/partials/tab-contents/support.php:28
319
- msgid "Send your issue"
320
- msgstr "Melde dein Problem"
321
-
322
- #: templates/partials/tab-contents/support.php:29
323
- msgid "If it wasn't yet reported then you can <a href=\"https://wordpress.org/support/plugin/wp-external-links#postform\" target=\"_blank\">send your problem</a>."
324
- msgstr "Wenn du im Support-Forum nicht fündig wirst, <a href=\"https://wordpress.org/support/plugin/wp-external-links#postform\" target=\"_blank\">melde uns dein Problem</a>."
325
-
326
- #: templates/partials/tab-contents/support.php:30
327
- msgid "Please after reporting send me the following technical information <a href=\"http://www.finewebdev.com/contact\" target=\"_blank\">by mail</a>. That will make it easier to solve the problem."
328
- msgstr "Nach der Meldung eines Problems sende bitte die folgende techn. Information <a href=\"http://www.finewebdev.com/contact\" target=\"_blank\">per E-Mail</a> an uns. Das macht es leichter, das Problem zu lösen."
329
-
330
- #: templates/partials/tab-contents/support.php:33
331
- msgid "Copy Technical Info"
332
- msgstr "Kopiere tech. Info"
333
-
334
- #: templates/partials/tab-contents/support.php:37
335
- msgid "WP url:"
336
- msgstr "WordPress-URL:"
337
-
338
- #: templates/partials/tab-contents/support.php:39
339
- msgid "WP version:"
340
- msgstr "WordPress-Version:"
341
-
342
- #: templates/partials/tab-contents/support.php:41
343
- msgid "PHP version:"
344
- msgstr "PHP-Version:"
345
-
346
- #: templates/partials/tab-contents/support.php:43
347
- msgid "Active Plugins:"
348
- msgstr "Aktivierte Plugins:"
349
-
350
- #: templates/partials/tab-contents/support.php:57
351
- msgid "WPEL Settings:"
352
- msgstr "WP External Links - Einstellungen:"
353
-
354
- #: templates/settings-page/help-tabs/data-attributes.php:14
355
- msgid "Exclude or include by data-attribute"
356
- msgstr "Anhand Data Attribute aus- bzw. einschließen"
357
-
358
- #: templates/settings-page/help-tabs/data-attributes.php:16
359
- msgid "The <code>data-wpel-link</code> attribute can be set on links and forces the plugin to treat those links that way."
360
- msgstr "Das <code>data-wpel-link</code>-Attribut kann für Links vergeben werden und zwingt das Plugin, diese Links gesondert zu behandeln."
361
-
362
- #: templates/settings-page/help-tabs/data-attributes.php:19
363
- msgid "Links with <code>data-wpel-link=\"internal\"</code> will be treated as internal links."
364
- msgstr "Links mit <code>data-wpel-link=\"internal\"</code> werden wie interne Links behandelt."
365
-
366
- #: templates/settings-page/help-tabs/data-attributes.php:20
367
- msgid "Links with <code>data-wpel-link=\"external\"</code> will be treated as external links."
368
- msgstr "Links mit <code>data-wpel-link=\"external\"</code> werden wie externe Links behandelt."
369
-
370
- #: templates/settings-page/help-tabs/data-attributes.php:21
371
- msgid "Links with <code>data-wpel-link=\"exclude\"</code> will be treated as excluded links (which have their own settings or will be treated as internal links)."
372
- msgstr "Links mit <code>data-wpel-link=\"exclude\"</code> werden wie ausgeschlossene Links behandelt (mit eigenen Einstellungen oder wie interne Links)."
373
-
374
- #: templates/settings-page/help-tabs/data-attributes.php:22
375
- msgid "Links with <code>data-wpel-link=\"ignore\"</code> will be completely ignored by this plugin."
376
- msgstr "Links mit <code>data-wpel-link=\"ignore\"</code> werden ignoriert."
377
-
378
- #: templates/settings-page/tab-contents/exceptions.php:22
379
- msgid "The data-attribute <a href=\"#\" data-wpel-help=\"data-attributes\"><code>data-wpel-link</code></a> can be set on individual links to treat them as internal, external or excluded, or to completely ignore links form being processed by this plugin."
380
- msgstr "Das Data Attribute <a href=\"#\" data-wpel-help=\"data-attributes\"><code>data-wpel-link</code></a> kann für individuelle Links vergeben werden, um diese wie interne, externe oder ausgeschlossene Links zu behandeln, oder um sie vollständig zu ignorieren."
381
-
382
- #. Plugin URI of the plugin/theme
383
- msgid "https://wordpress.org/plugins/wp-external-links/"
384
- msgstr "https://wordpress.org/plugins/wp-external-links/"
385
-
386
- #. Description of the plugin/theme
387
- msgid "Open external links in a new tab or window, adding \"nofollow\" and \"noopener\", set font icon, SEO friendly options and more."
388
- msgstr "Bietet Optionen, um externe und interne Verknüpfungen (\"Links\") gesondert zu behandeln; ermöglicht das Hinzufügen von \"nofollow\"/\"noopener\", Auszeichnung von Links mit Icons, SEO-freundlichen Einstellungen und mehr."
389
-
390
- #. Author URI of the plugin/theme
391
- msgid "http://www.finewebdev.com"
392
- msgstr "http://www.finewebdev.com"
393
-
394
- #. #-#-#-#-# tmp-wp-external-links.pot (WP External Links 2.1.0) #-#-#-#-#
395
- #. Plugin Name of the plugin/theme
396
- #: includes/admin/class-wpel-network-page.php:103
397
- #: includes/admin/class-wpel-network-page.php:114
398
- #: includes/admin/class-wpel-settings-page.php:132
399
- #: includes/admin/class-wpel-settings-page.php:142
400
- msgid "WP External Links"
401
- msgstr "WP External Links"
402
-
403
- #: includes/admin/class-wpel-network-page.php:104
404
- #: includes/admin/class-wpel-network-page.php:115
405
- #: includes/admin/class-wpel-settings-page.php:45
406
- #: includes/admin/class-wpel-settings-page.php:133
407
- #: includes/admin/class-wpel-settings-page.php:143
408
- #: includes/admin/settings-fields/class-wpel-external-link-fields.php:52
409
- msgid "External Links"
410
- msgstr "Externe Links"
411
-
412
- #: includes/admin/class-wpel-network-page.php:43
413
- #: includes/admin/class-wpel-settings-page.php:65
414
- #: includes/admin/settings-fields/class-wpel-admin-fields.php:26
415
- msgid "Admin Settings"
416
- msgstr "Admin-Einstellungen"
417
-
418
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:87
419
- msgid "Post content"
420
- msgstr "Beiträge/Seiten"
421
-
422
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:107
423
- msgid "All widgets"
424
- msgstr "Alle Widgets"
425
-
426
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:46
427
- msgid "Make subdomains internal:"
428
- msgstr "Behandle Subdomains als interne Links:"
429
-
430
- #: includes/admin/settings-fields/class-wpel-exceptions-fields.php:117
431
- msgid "Treat all links to the site's domain and subdomains as internal links"
432
- msgstr "Behandle alle Links zur eigenen Domain und Subdomains wie interne Links"
433
-
434
- #: includes/admin/settings-fields/class-wpel-link-fields-base.php:46
435
- msgid "Also add to <code>rel</code> attribute:"
436
- msgstr "<code>rel</code>-Attribut:"
437
-
438
- #: includes/admin/settings-fields/class-wpel-external-link-fields.php:65
439
- msgid "Add <code>\"external\"</code>"
440
- msgstr "Füge <code>\"external\"</code> hinzu"
441
-
442
- #. Author of the plugin/theme
443
- msgid "Victor Villaverde Laan"
444
- msgstr "Victor Villaverde Laan"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/fwp/class-fwp-debug.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  class FWP_Debug_1x0x0 extends WPRun_Base_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  class FWP_Debug_1x0x0 extends WPRun_Base_1x0x0
12
  {
libs/fwp/class-fwp-html-element.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  class FWP_HTML_Element_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  class FWP_HTML_Element_1x0x0
12
  {
libs/fwp/class-fwp-html-fields.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  class FWP_HTML_Fields_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  class FWP_HTML_Fields_1x0x0
12
  {
libs/fwp/component-bases/class-fwp-plugin-base.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  abstract class FWP_Plugin_Base_1x0x0 extends WPRun_Base_1x0x0
14
  {
@@ -55,6 +53,22 @@ abstract class FWP_Plugin_Base_1x0x0 extends WPRun_Base_1x0x0
55
  );
56
  }
57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  /**
59
  * @param string $plugin_file
60
  */
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  abstract class FWP_Plugin_Base_1x0x0 extends WPRun_Base_1x0x0
12
  {
53
  );
54
  }
55
 
56
+ /**
57
+ * Action for "admin_action_wpel_dismiss_notice"
58
+ */
59
+ protected function action_admin_action_wpel_dismiss_notice()
60
+ {
61
+ update_option( 'wpel-notice-dismissed-rate', true );
62
+
63
+ if ( !empty( $_GET['redirect'] ) ) {
64
+ wp_safe_redirect( $_GET['redirect'] );
65
+ } else {
66
+ wp_safe_redirect( admin_url() );
67
+ }
68
+
69
+ exit;
70
+ }
71
+
72
  /**
73
  * @param string $plugin_file
74
  */
libs/fwp/component-bases/class-fwp-register-hook-base.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  abstract class FWP_Register_Hook_Base_1x0x0 extends WPRun_Base_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  abstract class FWP_Register_Hook_Base_1x0x0 extends WPRun_Base_1x0x0
12
  {
libs/fwp/component-bases/class-fwp-settings-section-base.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  abstract class FWP_Settings_Section_Base_1x0x0 extends WPRun_Base_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  abstract class FWP_Settings_Section_Base_1x0x0 extends WPRun_Base_1x0x0
12
  {
libs/fwp/component-bases/class-fwp-template-tag-base.php CHANGED
@@ -8,10 +8,8 @@
8
  * @package FWP
9
  * @category WordPress Library
10
  * @version 1.0.0
11
- * @author Victor Villaverde Laan
12
- * @link http://www.finewebdev.com
13
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
14
- * @license Dual licensed under the MIT and GPLv2+ licenses
15
  */
16
  abstract class FWP_Template_Tag_Base_1x0x0 extends WPRun_Base_1x0x0
17
  {
8
  * @package FWP
9
  * @category WordPress Library
10
  * @version 1.0.0
11
+
12
+ * @link https://www.webfactoryltd.com/
 
 
13
  */
14
  abstract class FWP_Template_Tag_Base_1x0x0 extends WPRun_Base_1x0x0
15
  {
libs/fwp/filter-hooks/class-fwp-final-output.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  class FWP_Final_Output_1x0x0 extends WPRun_Base_1x0x0
14
  {
5
  * @package FWP
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  class FWP_Final_Output_1x0x0 extends WPRun_Base_1x0x0
12
  {
libs/fwp/filter-hooks/class-fwp-widget-output.php CHANGED
@@ -8,10 +8,8 @@
8
  * @package FWP
9
  * @category WordPress Library
10
  * @version 1.0.0
11
- * @author Victor Villaverde Laan
12
- * @link http://www.finewebdev.com
13
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
14
- * @license Dual licensed under the MIT and GPLv2+ licenses
15
  */
16
  class FWP_Widget_Output_1x0x0 extends WPRun_Base_1x0x0
17
  {
8
  * @package FWP
9
  * @category WordPress Library
10
  * @version 1.0.0
11
+
12
+ * @link https://www.webfactoryltd.com/
 
 
13
  */
14
  class FWP_Widget_Output_1x0x0 extends WPRun_Base_1x0x0
15
  {
libs/wprun/class-wprun-autoloader.php CHANGED
@@ -5,10 +5,8 @@
5
  * @package WPRun
6
  * @category WordPress Library
7
  * @version 1.0.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  class WPRun_Autoloader_1x0x0
14
  {
5
  * @package WPRun
6
  * @category WordPress Library
7
  * @version 1.0.0
8
+
9
+ * @link https://www.webfactoryltd.com/
 
 
10
  */
11
  class WPRun_Autoloader_1x0x0
12
  {
libs/wprun/class-wprun-base.php CHANGED
@@ -9,10 +9,8 @@
9
  * @package WPRun
10
  * @category WordPress Library
11
  * @version 1.0.0
12
- * @author Victor Villaverde Laan
13
- * @link http://www.finewebdev.com
14
- * @link https://github.com/freelancephp/WPRun-WordPress-Development
15
- * @license Dual licensed under the MIT and GPLv2+ licenses
16
  */
17
  abstract class WPRun_Base_1x0x0
18
  {
9
  * @package WPRun
10
  * @category WordPress Library
11
  * @version 1.0.0
12
+ * @author WebFactory Ltd
13
+ * @link https://www.webfactoryltd.com/
 
 
14
  */
15
  abstract class WPRun_Base_1x0x0
16
  {
public/css/wpel-admin.css CHANGED
@@ -99,7 +99,7 @@ a.toplevel_page_wpel-network-settings-page .wp-menu-image:before {
99
  content: "\f14c";
100
  }
101
  .wpel-settings-page-internal-links form:before {
102
- content: "\f096";
103
  }
104
  .wpel-settings-page-excluded-links form:before {
105
  content: "\f14d";
@@ -124,4 +124,11 @@ a.toplevel_page_wpel-network-settings-page .wp-menu-image:before {
124
  content: "\f128";
125
  }
126
 
 
 
 
127
 
 
 
 
 
99
  content: "\f14c";
100
  }
101
  .wpel-settings-page-internal-links form:before {
102
+ content: "\f0c1";
103
  }
104
  .wpel-settings-page-excluded-links form:before {
105
  content: "\f14d";
124
  content: "\f128";
125
  }
126
 
127
+ .wrap h2.nav-tab-wrapper {
128
+ padding-top: 20px;
129
+ }
130
 
131
+ #rating-notice {
132
+ display: inline-block;
133
+ padding: 15px;
134
+ }
readme.txt CHANGED
@@ -1,26 +1,28 @@
1
- === WP External Links (nofollow new tab seo) ===
2
- Contributors: freelancephp
3
- Tags: links, new window, new tab, external links, nofollow, follow, seo, noopener, noreferrer, internal links, icon, target, _blank, wpmu
4
- Requires at least: 4.2.0
5
- Tested up to: 4.8.3
6
- Stable tag: 2.2.0
7
-
8
- Manage external and internal links: open in new window or tab, add "nofollow", "noopener", font icons and more. SEO friendly.
9
-
 
 
10
 
11
  == Description ==
12
 
13
- Manage external and internal links on your site.
14
 
15
- > <strong>=== NEW: Version 2 ===</strong><br>
16
- > WPEL plugin was completely rebuilt and has lots of new features, like "noopener", font icons, internal links options and WPMU settings.
17
 
18
  = Features =
19
  * Manage external and internal links
20
  * Open links in new window or tab
21
- * Add "follow" or "nofollow"
22
- * Add "noopener" and "noreferrer" (for security)
23
- * Add link icons (font icons: font awesome, dashicons)
24
  * Set other attributes like title and CSS classes
25
  * Scan complete page (or just posts, comments, widgets)
26
  * SEO friendly
@@ -38,19 +40,7 @@ After activating you can set all options for external and internal links on the
38
  The plugin filters the output and changes the links on the fly. The real contents (posts, pages, widget etcetera) will not be changed in the database.
39
  When deactivating the plugin, all contents will be the same as it was before.
40
 
41
- = Requirements =
42
- * PHP version 5.3 or up
43
- * WordPress version 4.2 or up
44
-
45
- If you want support for older versions of PHP or WordPress then download and install [version 1.81](https://downloads.wordpress.org/plugin/wp-external-links.1.81.zip) of this plugin.
46
-
47
- = Sources =
48
- * [Documentation](http://wordpress.org/extend/plugins/wp-external-links/other_notes/)
49
- * [FAQ](http://wordpress.org/extend/plugins/wp-external-links/faq/)
50
- * [Github](https://github.com/freelancephp/WP-External-Links)
51
-
52
- > <strong>Like this plugin?</strong><br>
53
- > [Rate it](http://wordpress.org/support/view/plugin-reviews/wp-external-links) to support the development of this plugin.
54
 
55
 
56
  == Installation ==
@@ -153,7 +143,7 @@ Add this JavaScript code to your site:
153
  });
154
  });`
155
 
156
- = How to open f.e. PDF files in a new window? =
157
 
158
  Use some JavaScript code for opening PDF files in a new window:
159
 
@@ -181,14 +171,11 @@ Here are some suggestions on solving the problem:
181
  1. Use `wpel_apply_settings`-filter to ignore complete post, pages, categories etc
182
 
183
 
184
- [Do you have a question? Please ask me](http://www.finewebdev.comcontact/)
185
-
186
-
187
  == Screenshots ==
188
 
189
  1. Link Icons
190
- 1. Admin Settings Page
191
- 1. WPMU Network Settings Page
192
 
193
 
194
  == Documentation ==
@@ -256,6 +243,11 @@ See [FAQ](https://wordpress.org/plugins/wp-external-links/faq/) for more info.
256
 
257
  == Changelog ==
258
 
 
 
 
 
 
259
  = 2.2.0 =
260
  * Added option ignore links by classes
261
  * Added option skip pages and posts by id
@@ -416,8 +408,8 @@ See [FAQ](https://wordpress.org/plugins/wp-external-links/faq/) for more info.
416
  * Added option for setting title-attribute
417
  * Added option for excluding filtering certain external links
418
  * Added Admin help tooltips using jQuery Tipsy Plugin
419
- * Reorginized files and refactored code to PHP5 (no support for PHP4)
420
- * Added WP built-in meta box functionallity (using the `WP_Meta_Box_Page` Class)
421
  * Reorganized saving options and added Ajax save method (using the `WP_Option_Forms` Class)
422
  * Removed Regexp and using phpQuery
423
  * Choose menu position for this plugin (see "Screen Options")
@@ -437,7 +429,7 @@ See [FAQ](https://wordpress.org/plugins/wp-external-links/faq/) for more info.
437
  * Fixed PHP / WP notices
438
 
439
  = 0.32 =
440
- * For jQuery uses live() function so also opens dynamicly created links in given target
441
  * Fixed bug of changing `<abbr>` tag
442
  * Small cosmetical adjustments
443
 
1
+ === External Links - nofollow, noopener & new window ===
2
+ Contributors: WebFactory, UnderConstructionPage, googlemapswidget, securityninja, wpreset
3
+ Tags: new window, new tab, external links, nofollow, noopener, follow, dofollow, seo, noreferrer, internal links, target, links, link, internal link, external link
4
+ Requires at least: 4.2
5
+ Tested up to: 5.2
6
+ Requires PHP: 5.3
7
+ Stable tag: 2.3
8
+ License: GPLv2 or later
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Manage internal & external links: open in a new window or tab, control nofollow & noopener. SEO friendly.
12
 
13
  == Description ==
14
 
15
+ **Manage all external & internal links on your site**. Control icons, nofollow, noopener and if links open in new window or new tab.
16
 
17
+ = NEW: Version 2 =
18
+ WP External Links plugin was completely rebuilt in v2 and has lots of new features, like "noopener", font icons, internal links options and full WPMU support.
19
 
20
  = Features =
21
  * Manage external and internal links
22
  * Open links in new window or tab
23
+ * Add follow or nofollow (for SEO)
24
+ * Add noopener and noreferrer (for security)
25
+ * Add link icons (FontAwesome and Dashicons)
26
  * Set other attributes like title and CSS classes
27
  * Scan complete page (or just posts, comments, widgets)
28
  * SEO friendly
40
  The plugin filters the output and changes the links on the fly. The real contents (posts, pages, widget etcetera) will not be changed in the database.
41
  When deactivating the plugin, all contents will be the same as it was before.
42
 
43
+ **Like the plugin?** [Rate it](http://wordpress.org/support/view/plugin-reviews/wp-external-links) to support the development.
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
 
46
  == Installation ==
143
  });
144
  });`
145
 
146
+ = How to open PDF files in a new window? =
147
 
148
  Use some JavaScript code for opening PDF files in a new window:
149
 
171
  1. Use `wpel_apply_settings`-filter to ignore complete post, pages, categories etc
172
 
173
 
 
 
 
174
  == Screenshots ==
175
 
176
  1. Link Icons
177
+ 2. Admin Settings Page
178
+ 3. WPMU Network Settings Page
179
 
180
 
181
  == Documentation ==
243
 
244
  == Changelog ==
245
 
246
+ = 2.3 =
247
+ * 2019-06-14
248
+ * bug fixes
249
+ * 40,000 installations hit on 2018-03-13
250
+
251
  = 2.2.0 =
252
  * Added option ignore links by classes
253
  * Added option skip pages and posts by id
408
  * Added option for setting title-attribute
409
  * Added option for excluding filtering certain external links
410
  * Added Admin help tooltips using jQuery Tipsy Plugin
411
+ * Reorganized files and refactored code to PHP5 (no support for PHP4)
412
+ * Added WP built-in meta box functionality (using the `WP_Meta_Box_Page` Class)
413
  * Reorganized saving options and added Ajax save method (using the `WP_Option_Forms` Class)
414
  * Removed Regexp and using phpQuery
415
  * Choose menu position for this plugin (see "Screen Options")
429
  * Fixed PHP / WP notices
430
 
431
  = 0.32 =
432
+ * For jQuery uses live() function so also opens dynamiclly created links in given target
433
  * Fixed bug of changing `<abbr>` tag
434
  * Small cosmetical adjustments
435
 
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
templates/network-page/help-tabs/under-construction.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  ?>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  ?>
templates/network-page/main.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/network-page/tab-contents/network-admin-settings.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/network-page/tab-contents/network-settings.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/partials/nav-tabs.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
@@ -20,6 +18,16 @@ $set_tab_active_class = function ( $tab ) use ( $vars ) {
20
  echo ' nav-tab-active';
21
  }
22
  };
 
 
 
 
 
 
 
 
 
 
23
  ?>
24
  <h2 class="nav-tab-wrapper">
25
  <?php foreach ( $vars[ 'tabs' ] as $tab_key => $tab_values ): ?>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
18
  echo ' nav-tab-active';
19
  }
20
  };
21
+
22
+ $first_install = get_option( 'wpel-first-install' );
23
+ $dismiss_url = add_query_arg(array('action' => 'wpel_dismiss_notice', 'notice' => 'rate', 'redirect' => urlencode($_SERVER['REQUEST_URI'])), admin_url('admin.php'));
24
+
25
+ if (false == get_option( 'wpel-notice-dismissed-rate', false ) && current_time( 'timestamp' ) - $first_install > ( HOUR_IN_SECONDS / 4 ) ) {
26
+ echo '<div id="rating-notice" class="notice notice-info">
27
+ <p><strong>Help us keep External Links <u>free &amp; maintained</u></strong><br>By taking a minute to rate the plugin you\'ll help us keep it free &amp; maintained. Thank you 👋</p>
28
+ <p><a href="https://wordpress.org/support/plugin/wp-external-links/reviews/#new-post" target="_blank" class="button button-primary">Rate the plugin 👍</a> &nbsp;&nbsp; <a href="' . $dismiss_url . '">I\'ve already rated it</a></p>
29
+ </div>';
30
+ }
31
  ?>
32
  <h2 class="nav-tab-wrapper">
33
  <?php foreach ( $vars[ 'tabs' ] as $tab_key => $tab_values ): ?>
templates/partials/tab-contents/fields-default.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/partials/tab-contents/support.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
@@ -16,6 +14,17 @@
16
  ?>
17
  <h2><?php _e( 'Support', 'wp-external-links' ); ?></h2>
18
 
 
 
 
 
 
 
 
 
 
 
 
19
  <h3><?php _e( 'Documentation', 'wp-external-links' ); ?></h3>
20
  <p><?php _e( 'Take a look at the <a href="#" data-wpel-help>help section</a> for documentation', 'wp-external-links' ); ?></p>
21
 
@@ -26,8 +35,8 @@
26
  <p><?php _e( 'When you experience problems using this plugin please look if your problem was <a href="https://wordpress.org/support/plugin/wp-external-links" target="_blank">already reported</a>.', 'wp-external-links' ); ?></p>
27
 
28
  <h3><?php _e( 'Send your issue', 'wp-external-links' ); ?></h3>
29
- <p><?php _e( 'If it wasn\'t yet reported then you can <a href="https://wordpress.org/support/plugin/wp-external-links#postform" target="_blank">send your problem</a>.', 'wp-external-links' ); ?>
30
- <?php _e( 'Please after reporting send me the following technical information <a href="http://www.finewebdev.com/contact" target="_blank">by mail</a>. That will make it easier to solve the problem.', 'wp-external-links' ); ?>
31
  </p>
32
  <p>
33
  <button class="button js-wpel-copy"><?php _e( 'Copy Technical Info', 'wp-external-links' ); ?></button>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
14
  ?>
15
  <h2><?php _e( 'Support', 'wp-external-links' ); ?></h2>
16
 
17
+ <h3><?php _e( 'Exclude or include by data-attribute', 'wp-external-links' ) ?></h3>
18
+ <p>
19
+ <?php _e( 'The <code>data-wpel-link</code> attribute can be set on links and forces the plugin to treat those links that way.', 'wp-external-links' ); ?>
20
+ </p>
21
+ <ul>
22
+ <li><?php _e( 'Links with <code>data-wpel-link="internal"</code> will be treated as internal links.', 'wp-external-links' ); ?></li>
23
+ <li><?php _e( 'Links with <code>data-wpel-link="external"</code> will be treated as external links.', 'wp-external-links' ); ?></li>
24
+ <li><?php _e( 'Links with <code>data-wpel-link="exclude"</code> will be treated as excluded links (which have their own settings or will be treated as internal links).', 'wp-external-links' ); ?></li>
25
+ <li><?php _e( 'Links with <code>data-wpel-link="ignore"</code> will be completely ignored by this plugin.', 'wp-external-links' ); ?></li>
26
+ </ul>
27
+
28
  <h3><?php _e( 'Documentation', 'wp-external-links' ); ?></h3>
29
  <p><?php _e( 'Take a look at the <a href="#" data-wpel-help>help section</a> for documentation', 'wp-external-links' ); ?></p>
30
 
35
  <p><?php _e( 'When you experience problems using this plugin please look if your problem was <a href="https://wordpress.org/support/plugin/wp-external-links" target="_blank">already reported</a>.', 'wp-external-links' ); ?></p>
36
 
37
  <h3><?php _e( 'Send your issue', 'wp-external-links' ); ?></h3>
38
+ <p><?php _e( 'If it wasn\'t yet reported then you should <a href="https://wordpress.org/support/plugin/wp-external-links#postform" target="_blank">post your problem</a>.', 'wp-external-links' ); ?>
39
+ <?php _e( 'If you don\'t like posting publically <a href="mailto:support@webfactoryltd.com?subject=WP%20External%20Links">email us</a> and make sure you copy/past the technical information displayed below. Without it we can\'t help you.', 'wp-external-links' ); ?>
40
  </p>
41
  <p>
42
  <button class="button js-wpel-copy"><?php _e( 'Copy Technical Info', 'wp-external-links' ); ?></button>
templates/requirements-notice.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  ?>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  ?>
templates/settings-page/help-tabs/data-attributes.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  ?>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  ?>
templates/settings-page/help-tabs/under-construction.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  */
13
  ?>
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  */
11
  ?>
templates/settings-page/main.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/settings-page/tab-contents/admin.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/settings-page/tab-contents/exceptions.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/settings-page/tab-contents/excluded-links.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/settings-page/tab-contents/external-links.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
templates/settings-page/tab-contents/internal-links.php CHANGED
@@ -4,10 +4,8 @@
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link http://www.finewebdev.com
10
- * @link https://github.com/freelancephp/WP-External-Links
11
  * @license Dual licensed under the MIT and GPLv2+ licenses
12
  *
13
  * @var array $vars
4
  *
5
  * @package WPEL
6
  * @category WordPress Plugin
7
+ * @version 2.3
8
+ * @link https://www.webfactoryltd.com/
 
 
9
  * @license Dual licensed under the MIT and GPLv2+ licenses
10
  *
11
  * @var array $vars
wp-external-links.php CHANGED
@@ -1,26 +1,16 @@
1
  <?php
2
  /**
3
- * WP External Links Plugin
4
- *
5
- * @package WPEL
6
- * @category WordPress Plugin
7
- * @version 2.2.0
8
- * @author Victor Villaverde Laan
9
- * @link https://wordpress.org/plugins/wp-external-links/
10
- * @link https://github.com/freelancephp/WP-External-Links
11
- * @license Dual licensed under the MIT and GPLv2+ licenses
12
- *
13
- * @wordpress-plugin
14
  * Plugin Name: WP External Links
15
- * Version: 2.2.0
16
  * Plugin URI: https://wordpress.org/plugins/wp-external-links/
17
- * Description: Open external links in a new tab or window, adding "nofollow" and "noopener", set font icon, SEO friendly options and more.
18
- * Author: Victor Villaverde Laan
19
- * Author URI: http://www.finewebdev.com
20
  * License: Dual licensed under the MIT and GPLv2+ licenses
21
  * Text Domain: wp-external-links
22
- * Domain Path: /languages
23
  */
 
 
24
  if ( ! function_exists( 'wpel_init' ) ):
25
 
26
  function wpel_init()
@@ -87,6 +77,3 @@ if ( ! function_exists( 'wpel_init' ) ):
87
  wpel_init();
88
 
89
  endif;
90
-
91
-
92
- /*?>*/
1
  <?php
2
  /**
 
 
 
 
 
 
 
 
 
 
 
3
  * Plugin Name: WP External Links
4
+ * Version: 2.3
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
8
+ * Author URI: https://www.webfactoryltd.com/
9
  * License: Dual licensed under the MIT and GPLv2+ licenses
10
  * Text Domain: wp-external-links
 
11
  */
12
+
13
+
14
  if ( ! function_exists( 'wpel_init' ) ):
15
 
16
  function wpel_init()
77
  wpel_init();
78
 
79
  endif;