Save Post. Check Links.
Save Post. Check Links.
Description
When a post is saved or published, this plugin will
- scan the post’s content for any URLs,
- ping all the URLs found (except relative ones),
- detect any broken or unreachable URLs and list them for review and correction.
No more publishing of links or images broken by typos or incompletely copy-pasted URLs!
Support
- Community support via the support forums on wordpress.org
- We don’t handle support via e-mail, Twitter, GitHub issues etc.
Contribute
- Active development of this plugin is handled on GitHub.
- Pull requests for documented bugs are highly appreciated.
- If you think you’ve found a bug (e.g. you’re experiencing unexpected behavior), please post at the support forums first.
- If you want to help us translate this plugin you can do so on WordPress Translate.
Credits
- Author: Sergej Müller
- Maintainers: pluginkollektiv
Screenshots
Faq
No, but it will automatically find any broken URLs in a post and list them for you, so you can review and correct them.
Yes, the plugin will ping every URL in your post’s content, no matter if it’s in a link, an image** or even in a shortcode.
No, it will just list any broken URLs for you, but it will do so already when you save a draft. Most people save a draft multiple times before they publish it, so there’s a fair chance you’ll notice any broken links before actually publishing.
By default the plugin will try to ping both, http and https URLs. If needed, you can change accepted protocols via hook. For example, in order to check only URLs with SSL:
add_filter( 'spcl_acceptable_protocols', 'set_spcl_acceptable_protocols' );
function set_spcl_acceptable_protocols( $schemes ) {
return array( 'https' );
}
There is none, no configuration necessary.
Reviews
Works great in October of 2024
By Josh Journey (ljosh) on October 25, 2024
Works exactly as one would hope. I added a valid link and a 404 link. Right away it was able to detect the 404 link and give a small notice at the top of post edit regarding the broken link. I use a page speed monitor for my site which I can happily say I saw zero foot print on page speed. Happy to see this work well with the latest version of WordPress. 🙂
Interesting approach – works fine
By Martin Sauter (martin.sauter) on April 14, 2021
Plain and simple link checker
By Bjarne Oldrup (oldrup) on January 11, 2021
Excellent link controll
By raulmuroc on August 17, 2020
light plugin - works just perfect on posts
By deluigiluca on December 16, 2019
Changelog
1.0.2
- Updated build environment
- Minor code style corrections
- Include JavaScript in footer
- Tested up to WordPress 6.8
1.0.1
- Fix issue that check does work in Gutenberg
1.0.0
- Add support for the Gutenberg editor (compatible with the latest WordPress version now)
0.7.5
- Use a more secure hashing function
0.7.4
- Bugfix for translations via wordpress.org
0.7.3
- Improve code style
- Improve error messages
0.7.2
- updated and translated README
- updated plugin authors
0.7.1
- No verification of relative links (e.g. image paths)
- Hook
spcl_acceptable_protocolsadded

