svg-support
Last commit date
admin
4 days ago
css
3 years ago
functions
4 days ago
includes
1 year ago
integrations
1 year ago
js
1 year ago
languages
8 years ago
vendor
4 days ago
readme.txt
4 days ago
svg-support.php
4 days ago
svg-support.png
8 years ago
uninstall.php
1 year ago
uninstall.php
15 lines
| 1 | <?php if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 2 | exit; |
| 3 | } |
| 4 | |
| 5 | $bodhi_options_on_deletion = get_option( 'bodhi_svgs_settings' ); |
| 6 | |
| 7 | if ( isset($bodhi_options_on_deletion[ 'del_plugin_data' ]) && $bodhi_options_on_deletion[ 'del_plugin_data' ] === 'on' ) { |
| 8 | // Delete plugin options |
| 9 | delete_option( 'bodhi_svgs_plugin_version' ); |
| 10 | delete_option( 'bodhi_svgs_settings' ); |
| 11 | |
| 12 | // Delete all post meta related to SVG Support |
| 13 | global $wpdb; |
| 14 | $wpdb->delete($wpdb->postmeta, array('meta_key' => 'inline_featured_image')); |
| 15 | } |