forked from sethgitner/simple-author-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.php
26 lines (22 loc) · 871 Bytes
/
uninstall.php
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
<?php
/*----------------------------------------------------------------------------------------------------------
Uninstall Simple Author Box plugin - deletes plugin data in database
-----------------------------------------------------------------------------------------------------------*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
}
delete_option( 'saboxplugin_options' );
delete_option( 'sab_box_margin_top' );
delete_option( 'sab_box_margin_bottom' );
delete_option( 'sab_box_icon_size' );
delete_option( 'sab_box_name_size' );
delete_option( 'sab_box_name_font' );
delete_option( 'sab_box_subset' );
delete_option( 'sab_box_desc_font' );
delete_option( 'sab_box_desc_size' );
delete_option( 'sab_box_desc_font' );
delete_option( 'sab_box_web_size' );