# slider-blocks/2.10.0/uninstall.php

GutSlider – All in One Slider and Carousel Blocks for Gutenberg, version 2.10.0. 18 lines.

- Page: https://pluginprobe.com/plugins/slider-blocks/2.10.0/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/slider-blocks/2.10.0/raw/uninstall.php
- Modified: 2025-11-09T04:54:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/slider-blocks/2.10.0/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * Uninstall script for GutSliderBlocks
 *
 * @package GutSliderBlocks
 */

// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
    exit;
}

// Load the main plugin file to access the cleanup method.
require_once plugin_dir_path( __FILE__ ) . 'slider-blocks.php';

// Cleanup the plugin data.
GutSliderBlocks::cleanup();

```
