PluginProbe
WP Display Header / 4
WP Display Header v4
9 8 trunk 2.0.0 2.0.1 2.1.0 2.2.0 3 4 5 6 7
wp-display-header / uninstall.php

uninstall.php in WP Display Header 4, at uninstall.php

20 lines 493 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 */