|
1
|
<?php |
|
2
|
/** |
|
3
|
* Uninstaller for plugin.
|
|
4
|
*
|
|
5
|
* @package tiny-compress-images
|
|
6
|
*/ |
|
7
|
|
|
8
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
|
9
|
die; |
|
10
|
} |
|
11
|
|
|
12
|
require_once dirname( __FILE__ ) . '/src/class-tiny-apache-rewrite.php'; |
|
13
|
|
|
14
|
Tiny_Apache_Rewrite::uninstall_rules(); |
|
15
|
|