# slider-blocks/2.11.4/uninstall.php

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

- Page: https://pluginprobe.com/plugins/slider-blocks/2.11.4/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/slider-blocks/2.11.4/raw/uninstall.php
- Modified: 2026-02-26T06:12:34+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.11.4/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.
GutSlider\Plugin::cleanup();

```
