forked from joedolson/wp-accessibility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuninstall.php
More file actions
38 lines (38 loc) · 1.29 KB
/
uninstall.php
File metadata and controls
38 lines (38 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
if ( ! defined( 'ABSPATH' ) && ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
} else {
delete_option( 'rta_from_nav_menu' );
delete_option( 'rta_from_page_lists' );
delete_option( 'rta_from_category_lists' );
delete_option( 'rta_from_archive_links' );
delete_option( 'rta_from_tag_clouds' );
delete_option( 'rta_from_category_links' );
delete_option( 'rta_from_post_edit_links' );
delete_option( 'rta_from_edit_comment_links' );
delete_option( 'wpa_installed' );
delete_option( 'wpa_version' );
delete_option( 'asl_enable' );
delete_option( 'asl_content' );
delete_option( 'asl_navigation' );
delete_option( 'asl_sitemap' );
delete_option( 'asl_extra_target' );
delete_option( 'asl_extra_text' );
delete_option( 'asl_visible' );
delete_option( 'asl_styles_focus' );
delete_option( 'asl_styles_passive' );
delete_option( 'wpa_lang' );
delete_option( 'wpa_target' );
delete_option( 'wpa_search' );
delete_option( 'wpa_tabindex' );
delete_option( 'wpa_more' );
delete_option( 'wpa_continue' );
delete_option( 'wpa_toolbar' );
delete_option( 'wpa_diagnostics' );
delete_option( 'wpa_longdesc' );
delete_option( 'wpa_underline' );
delete_option( 'wpa_insert_roles' );
delete_option( 'wpa_focus' );
delete_option( 'wpa_focus_color' );
delete_option( 'wpa_complementary_container' );
}