mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-22 15:51:08 +00:00
12 lines
316 B
PHP
12 lines
316 B
PHP
|
<?php
|
||
|
// 404page uninstall
|
||
|
|
||
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) || ! WP_UNINSTALL_PLUGIN || dirname( WP_UNINSTALL_PLUGIN ) != dirname( plugin_basename( __FILE__ ) ) ) {
|
||
|
status_header( 404 );
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
include_once plugin_dir_path( __FILE__ ) . '404page.php';
|
||
|
|
||
|
$smart404page->uninstall();
|
||
|
?>
|