PluginProbe
Essential Widgets / 3.1
Essential Widgets v3.1
3.2.1 3.3 3.2 trunk 1.0.0 1.0.1 1.1 1.2 1.2.1 1.2.2 1.3 1.4 1.4.1 1.5 1.6 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 1.9 2.0 2.1 2.2 All 31 releases
← All changes | uninstall.php +7 -0 1.13.1 View file →
@@ -28,4 +28,11 @@
28 28 // If uninstall not called from WordPress, then exit.
29 29 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
30 30 exit;
31 31 }
32 +
33 +$option_name = 'essential_widgets_options'; // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- File-scope uninstall variable used immediately.
34 +
35 +delete_option( $option_name );
36 +
37 +// For site options in Multisite.
38 +delete_site_option( $option_name );