22 lines
324 B
PHP
22 lines
324 B
PHP
<?php
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
exit();
|
|
}
|
|
|
|
$keys = array(
|
|
'comment_text',
|
|
'initialized',
|
|
'numbers',
|
|
'own_orphans',
|
|
'the_content',
|
|
'the_excerpt',
|
|
'the_title',
|
|
'woocommerce_product_title',
|
|
'woocommerce_short_description',
|
|
);
|
|
|
|
foreach ( $keys as $key ) {
|
|
delete_option( 'iworks_orphan_'.$key );
|
|
}
|
|
|