404page
Last commit date
assets
1 year ago
inc
1 year ago
404page.php
1 year ago
block.json
3 years ago
block.php
1 year ago
functions.php
1 year ago
index.php
8 years ago
loader.php
1 year ago
readme.txt
1 month ago
shortcodes.php
1 year ago
uninstall.php
1 year ago
404page.php
25 lines
| 1 | <?php |
| 2 | /* |
| 3 | * Plugin Name: Smart Custom 404 Error Page |
| 4 | * Description: Custom 404 the easy way! Set any page as a custom 404 error page -- no coding needed. <a href="https://www.nerdpress.net/announcing-404-page/">Now managed by NerdPress!</a> |
| 5 | * Version: 11.4.8 |
| 6 | * Requires at least: 4.0 |
| 7 | * Requires PHP: 5.4 |
| 8 | * Author: NerdPress |
| 9 | * Author URI: https://www.nerdpress.net |
| 10 | * Text Domain: 404page |
| 11 | * License: GPL2+ |
| 12 | * License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 13 | */ |
| 14 | |
| 15 | |
| 16 | if ( ! defined( 'ABSPATH' ) ) { |
| 17 | exit; // Exit if accessed directly |
| 18 | } |
| 19 | |
| 20 | |
| 21 | /** |
| 22 | * Loader |
| 23 | */ |
| 24 | require_once( plugin_dir_path( __FILE__ ) . '/loader.php' ); |
| 25 |