PluginProbe
WooSwipe WooCommerce Gallery / trunk
WooSwipe WooCommerce Gallery vtrunk
3.0.11 3.0.12 trunk 1.1.10 1.1.11 1.1.12 1.1.13 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.6.1 1.1.6.2 1.1.6.3 1.1.6.4 1.1.6.5 1.1.6.6 1.1.6.7 1.1.6.8 1.1.7.0 1.1.8.0 1.1.8.10 1.1.8.11 All 41 releases
wooswipe / uninstall.php

uninstall.php in WooSwipe WooCommerce Gallery trunk, at uninstall.php

24 lines 443 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Fired when the plugin is uninstalled.
5 *
6 * Removes plugin options from the database. Does not remove product media.
7 *
8 * @link https://thriveweb.com.au/
9 * @since 1.0.0
10 *
11 * @package Wooswipe
12 */
13
14 // If uninstall not called from WordPress, then exit.
15 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
16 exit;
17 }
18
19 delete_option( 'wooswipe_options' );
20
21 if ( is_multisite() ) {
22 delete_site_option( 'wooswipe_options' );
23 }
24