| 1 |
<?php |
| 2 |
// Don't uninstall unless you absolutely want to! |
| 3 |
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 4 |
wp_die( 'WP_UNINSTALL_PLUGIN undefined.' ); |
| 5 |
} |
| 6 |
|
| 7 |
// Delete all meta data. |
| 8 |
delete_post_meta_by_key( '_wpdh_display_header' ); |
| 9 |
delete_option( 'wpdh_tax_meta' ); |
| 10 |
|
| 11 |
foreach ( get_users() as $user ) { |
| 12 |
delete_user_meta( $user->ID, 'wp-display-header' ); |
| 13 |
} |
| 14 |
|
| 15 |
|
| 16 |
/* Goodbye! Thank you for having me! */ |
| 17 |
|
| 18 |
|
| 19 |
/* End of file uninstall.php */ |
| 20 |
/* Location: ./wp-content/plugins/wp-display-header/uninstall.php */ |