Version Description
- Added compatibility for WP 5.5.
Download this release
Release Info
| Developer | ivanic |
| Plugin | |
| Version | 1.11.14 |
| Comparing to | |
| See all releases | |
Code changes from version 1.11.13 to 1.11.14
- broken-link-checker.php +1 -1
- includes/admin/links-page-js.php +2 -2
- languages/broken-link-checker.pot +3 -3
- readme.txt +10 -9
broken-link-checker.php
CHANGED
|
@@ -10,7 +10,7 @@
|
|
| 10 |
* Plugin Name: Broken Link Checker
|
| 11 |
* Plugin URI: https://wordpress.org/plugins/broken-link-checker/
|
| 12 |
* Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 13 |
-
* Version: 1.11.
|
| 14 |
* Author: WPMU DEV
|
| 15 |
* Author URI: https://premium.wpmudev.org/
|
| 16 |
* Text Domain: broken-link-checker
|
| 10 |
* Plugin Name: Broken Link Checker
|
| 11 |
* Plugin URI: https://wordpress.org/plugins/broken-link-checker/
|
| 12 |
* Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
|
| 13 |
+
* Version: 1.11.14
|
| 14 |
* Author: WPMU DEV
|
| 15 |
* Author URI: https://premium.wpmudev.org/
|
| 16 |
* Text Domain: broken-link-checker
|
includes/admin/links-page-js.php
CHANGED
|
@@ -42,13 +42,13 @@ function reloadDetailsRow(link_id){
|
|
| 42 |
var details_row = jQuery('#link-details-'+link_id);
|
| 43 |
|
| 44 |
//Load up the new link info (so sue me)
|
| 45 |
-
details_row.find('td').html('<center><?php echo esc_js( __( 'Loading...', 'broken-link-checker' ) ); ?></center>').load(
|
| 46 |
"<?php echo admin_url( 'admin-ajax.php' ); ?>",
|
| 47 |
{
|
| 48 |
'action' : 'blc_link_details',
|
| 49 |
'link_id' : link_id
|
| 50 |
}
|
| 51 |
-
);
|
| 52 |
}
|
| 53 |
|
| 54 |
jQuery(function($){
|
| 42 |
var details_row = jQuery('#link-details-'+link_id);
|
| 43 |
|
| 44 |
//Load up the new link info (so sue me)
|
| 45 |
+
details_row.find('td').html('<center><?php echo esc_js( __( 'Loading...', 'broken-link-checker' ) ); ?></center>').on( 'load', function() {
|
| 46 |
"<?php echo admin_url( 'admin-ajax.php' ); ?>",
|
| 47 |
{
|
| 48 |
'action' : 'blc_link_details',
|
| 49 |
'link_id' : link_id
|
| 50 |
}
|
| 51 |
+
});
|
| 52 |
}
|
| 53 |
|
| 54 |
jQuery(function($){
|
languages/broken-link-checker.pot
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
-
# Copyright (C) 2020 Broken Link Checker 1.11.
|
| 2 |
-
# This file is distributed under the same license as the Broken Link Checker 1.11.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
-
"Project-Id-Version: Broken Link Checker 1.11.
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
| 1 |
+
# Copyright (C) 2020 Broken Link Checker 1.11.14
|
| 2 |
+
# This file is distributed under the same license as the Broken Link Checker 1.11.14 package.
|
| 3 |
msgid ""
|
| 4 |
msgstr ""
|
| 5 |
+
"Project-Id-Version: Broken Link Checker 1.11.14\n"
|
| 6 |
"MIME-Version: 1.0\n"
|
| 7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 8 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
|
@@ -1,21 +1,20 @@
|
|
| 1 |
=== Broken Link Checker ===
|
| 2 |
Contributors: managewp, wpmudev
|
| 3 |
-
|
| 4 |
-
Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
|
| 5 |
Requires at least: 4.6
|
| 6 |
-
Tested up to: 5.
|
| 7 |
-
Stable tag: 1.11.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
-
|
| 15 |
|
| 16 |
**Features**
|
| 17 |
|
| 18 |
-
* Monitors links in your posts, pages, comments, the blogroll, and custom fields (optional).
|
| 19 |
* Detects links that don't work, missing images and redirects.
|
| 20 |
* Notifies you either via the Dashboard or by email.
|
| 21 |
* Makes broken links display differently in posts (optional).
|
|
@@ -37,7 +36,7 @@ There are several actions associated with each link. They show up when you move
|
|
| 37 |
* "Edit URL" lets you change the URL of that link. If the link is present in more than one place (e.g. both in a post and in the blogroll), all occurrences of that URL will be changed.
|
| 38 |
* "Unlink" removes the link but leaves the link text intact.
|
| 39 |
* "Not broken" lets you manually mark a "broken" link as working. This is useful if you know it was incorrectly detected as broken due to a network glitch or a bug. The marked link will still be checked periodically, but the plugin won't consider it broken unless it gets a new result.
|
| 40 |
-
* "Dismiss" hides the link
|
| 41 |
|
| 42 |
You can also click on the contents of the "Status" or "Link Text" columns to get more info about the status of each link.
|
| 43 |
|
|
@@ -67,9 +66,11 @@ To upgrade your installation
|
|
| 67 |
1. Reactivate the plugin. Your settings will be retained from the previous version.
|
| 68 |
|
| 69 |
== Changelog ==
|
|
|
|
|
|
|
| 70 |
= 1.11.13 =
|
| 71 |
* Added filter for disabling email notifications.
|
| 72 |
-
* Added filter to use GET requests.
|
| 73 |
* Added option to disable last updated time on post types.
|
| 74 |
* Added option to check post excerpts.
|
| 75 |
* Added a confirmation box when unlinking.
|
| 1 |
=== Broken Link Checker ===
|
| 2 |
Contributors: managewp, wpmudev
|
| 3 |
+
Tags: links, broken links, internal link, external link, broken images, seo, test links, check links, bad links
|
|
|
|
| 4 |
Requires at least: 4.6
|
| 5 |
+
Tested up to: 5.5
|
| 6 |
+
Stable tag: 1.11.14
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 10 |
+
Check posts, pages & all content for broken links & missing images to improve SEO. Get notified when bad links are found.
|
| 11 |
|
| 12 |
== Description ==
|
| 13 |
+
Broken Link Checker monitors and tests all internal links & external links on your site looking for broken links. It helps you fix bad links to improve SEO and user experience.
|
| 14 |
|
| 15 |
**Features**
|
| 16 |
|
| 17 |
+
* Monitors external links and internal links in your posts, pages, comments, the blogroll, and custom fields (optional).
|
| 18 |
* Detects links that don't work, missing images and redirects.
|
| 19 |
* Notifies you either via the Dashboard or by email.
|
| 20 |
* Makes broken links display differently in posts (optional).
|
| 36 |
* "Edit URL" lets you change the URL of that link. If the link is present in more than one place (e.g. both in a post and in the blogroll), all occurrences of that URL will be changed.
|
| 37 |
* "Unlink" removes the link but leaves the link text intact.
|
| 38 |
* "Not broken" lets you manually mark a "broken" link as working. This is useful if you know it was incorrectly detected as broken due to a network glitch or a bug. The marked link will still be checked periodically, but the plugin won't consider it broken unless it gets a new result.
|
| 39 |
+
* "Dismiss" hides the link from the "Broken Links" and "Redirects" views. It will still be checked as normal and get the normal link styles (e.g. a strike-through effect for broken links), but won't be reported again unless its status changes. Useful if you want to acknowledge a link as broken/redirected and just leave as it is.
|
| 40 |
|
| 41 |
You can also click on the contents of the "Status" or "Link Text" columns to get more info about the status of each link.
|
| 42 |
|
| 66 |
1. Reactivate the plugin. Your settings will be retained from the previous version.
|
| 67 |
|
| 68 |
== Changelog ==
|
| 69 |
+
= 1.11.14 =
|
| 70 |
+
* Added compatibility for WP 5.5.
|
| 71 |
= 1.11.13 =
|
| 72 |
* Added filter for disabling email notifications.
|
| 73 |
+
* Added filter to use GET requests. (Thanks to [Stian Lund](https://github.com/Pathduck))
|
| 74 |
* Added option to disable last updated time on post types.
|
| 75 |
* Added option to check post excerpts.
|
| 76 |
* Added a confirmation box when unlinking.
|
