PluginProbe
WP Last Login / 7
WP Last Login v7
trunk 1.0 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.3.0 1.4.0 2 3 4 5 6 7
wp-last-login / uninstall.php

uninstall.php in WP Last Login 7, at uninstall.php

17 lines 299 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Uninstall.
4 *
5 * @package wp-last-login
6 */
7
8 // Don't uninstall unless you absolutely want to!
9 if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
10 wp_die( 'WP_UNINSTALL_PLUGIN undefined.' );
11 }
12
13 delete_metadata( 'user', 0, 'wp-last-login', '', true );
14
15
16 /* Goodbye! Thank you for having me! */
17