broken-link-checker
Last commit date
core
12 years ago
css
12 years ago
idn
12 years ago
images
12 years ago
includes
12 years ago
js
13 years ago
languages
12 years ago
modules
12 years ago
broken-link-checker.php
12 years ago
readme.txt
12 years ago
uninstall.php
13 years ago
broken-link-checker.php
24 lines
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Broken Link Checker |
| 4 | Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/ |
| 5 | Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found. |
| 6 | Version: 1.8.3 |
| 7 | Author: Janis Elsts |
| 8 | Author URI: http://w-shadow.com/ |
| 9 | Text Domain: broken-link-checker |
| 10 | */ |
| 11 | |
| 12 | //Path to this file |
| 13 | if ( !defined('BLC_PLUGIN_FILE') ){ |
| 14 | define('BLC_PLUGIN_FILE', __FILE__); |
| 15 | } |
| 16 | |
| 17 | //Path to the plugin's directory |
| 18 | if ( !defined('BLC_DIRECTORY') ){ |
| 19 | define('BLC_DIRECTORY', dirname(__FILE__)); |
| 20 | } |
| 21 | |
| 22 | //Load the actual plugin |
| 23 | require 'core/init.php'; |
| 24 |