uninstall.php 845 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*----------------------------------------------------------------------------------------------------------
  3. Uninstall Simple Author Box plugin - deletes plugin data in database
  4. -----------------------------------------------------------------------------------------------------------*/
  5. // Exit if accessed directly
  6. if ( ! defined( 'ABSPATH' ) ) {
  7. exit;
  8. }
  9. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
  10. exit();
  11. }
  12. delete_option( 'saboxplugin_options' );
  13. delete_option( 'sab_box_margin_top' );
  14. delete_option( 'sab_box_margin_bottom' );
  15. delete_option( 'sab_box_icon_size' );
  16. delete_option( 'sab_box_name_size' );
  17. delete_option( 'sab_box_name_font' );
  18. delete_option( 'sab_box_subset' );
  19. delete_option( 'sab_box_desc_font' );
  20. delete_option( 'sab_box_desc_size' );
  21. delete_option( 'sab_box_desc_font' );
  22. delete_option( 'sab_box_web_size' );