broken-link-checker
Last commit date
core
15 years ago
css
15 years ago
idn
15 years ago
images
15 years ago
includes
15 years ago
js
15 years ago
languages
15 years ago
modules
15 years ago
broken-link-checker.php
15 years ago
readme.txt
15 years ago
uninstall.php
15 years ago
broken-link-checker.php
25 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.2.2 |
| 7 | Author: Janis Elsts |
| 8 | Author URI: http://w-shadow.com/blog/ |
| 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 | |
| 25 | ?> |