12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
if (! defined('WP_UNINSTALL_PLUGIN')) {
|
|
exit;
|
|
}
|
|
|
|
delete_option('kb_markdown_importer_settings');
|
|
delete_option('kb_markdown_importer_logs');
|
|
delete_option('kb_markdown_importer_last_sync');
|
|
delete_option('kb_markdown_importer_last_error');
|