| 1 |
<?php |
| 2 |
/** |
| 3 |
* Uninstall all GTM Kit data. |
| 4 |
* |
| 5 |
* @package GTM Kit |
| 6 |
*/ |
| 7 |
|
| 8 |
// Exit if accessed directly. |
| 9 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 10 |
exit; |
| 11 |
} |
| 12 |
|
| 13 |
delete_option( 'gtmkit' ); |
| 14 |
delete_option( 'gtmkit_version' ); |
| 15 |
delete_option( 'gtmkit_initial_version' ); |
| 16 |
delete_option( 'gtmkit_activation_prevent_redirect' ); |
| 17 |
delete_option( 'gtmkit_support_sync' ); |
| 18 |
delete_option( 'gtmkit_snippet_scan' ); |
| 19 |
|
| 20 |
// Remove the per-user introductions seen-state across all users. |
| 21 |
delete_metadata( 'user', 0, '_gtmkit_introductions', '', true ); |
| 22 |
|