/wp-content/plugins/broken-link-checker/broken-link-checker.php
https://bitbucket.org/lgorence/quickpress · PHP · 23 lines · 8 code · 3 blank · 12 comment · 2 complexity · 9c61cca7ac45fb6d45c8af6d64f097ed MD5 · raw file
- <?php
- /*
- Plugin Name: Broken Link Checker
- Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
- Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
- Version: 1.6.2
- Author: Janis Elsts
- Author URI: http://w-shadow.com/blog/
- Text Domain: broken-link-checker
- */
- //Path to this file
- if ( !defined('BLC_PLUGIN_FILE') ){
- define('BLC_PLUGIN_FILE', __FILE__);
- }
- //Path to the plugin's directory
- if ( !defined('BLC_DIRECTORY') ){
- define('BLC_DIRECTORY', dirname(__FILE__));
- }
- //Load the actual plugin
- require 'core/init.php';