hostinger
Last commit date
assets
1 year ago
includes
1 year ago
languages
1 year ago
src
1 year ago
vendor
1 year ago
vue-frontend
1 year ago
changelog.md
1 year ago
changelog.txt
1 year ago
composer.json
1 year ago
hostinger.php
1 year ago
index.php
2 years ago
package.json
1 year ago
readme.txt
1 year ago
uninstall.php
1 year ago
webpack.mix.js
1 year ago
uninstall.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | defined( 'WP_UNINSTALL_PLUGIN' ) || exit; |
| 4 | |
| 5 | global $wpdb; |
| 6 | |
| 7 | /** PHPCS:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching */ |
| 8 | /** Delete options */ |
| 9 | $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE 'hostinger\_%';" ); |
| 10 | /** PHPCS:enable */ |
| 11 |