# hostinger/3.0.11/uninstall.php

Hostinger Tools, version 3.0.11. 11 lines.

- Page: https://pluginprobe.com/plugins/hostinger/3.0.11/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/hostinger/3.0.11/raw/uninstall.php
- Modified: 2024-07-12T07:26:50+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/hostinger/3.0.11/code/uninstall.php#L10-L20`.

```php
<?php

defined( 'WP_UNINSTALL_PLUGIN' ) || exit;

global $wpdb;

/** PHPCS:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching */
/** Delete options */
$wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE 'hostinger\_%';" );
/** PHPCS:enable */

```
