uninstall.php
| 1 | <?php |
| 2 | |
| 3 | if ( |
| 4 | !defined( 'WP_UNINSTALL_PLUGIN' ) |
| 5 | || |
| 6 | !WP_UNINSTALL_PLUGIN |
| 7 | || |
| 8 | dirname( WP_UNINSTALL_PLUGIN ) != dirname( plugin_basename( __FILE__ ) ) |
| 9 | ) { |
| 10 | status_header( 404 ); |
| 11 | exit; |
| 12 | } |
| 13 | |
| 14 | // Delete all compact options |
| 15 | delete_option( 'jetpack_options' ); |
| 16 | |
| 17 | // Delete all non-compact options |
| 18 | delete_option( 'jetpack_register' ); |
| 19 | delete_option( 'jetpack_activated' ); |
| 20 | delete_option( 'jetpack_active_modules' ); |
| 21 | delete_option( 'jetpack_do_activate' ); |
| 22 | |
| 23 | // Delete all legacy options |
| 24 | delete_option( 'jetpack_was_activated' ); |
| 25 | delete_option( 'jetpack_auto_installed' ); |
| 26 | delete_transient( 'jetpack_register' ); |
| 27 |