-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuninstall.php
45 lines (41 loc) · 1.05 KB
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Fired when the plugin is uninstalled.
*
* @link http://xylusthemes.com
* @since 1.0.0
*
* @package Import_Meetup_Events
*/
// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
// Remove options
delete_option( 'xtmi_meetup_options' );
// Remove schduled Imports
$scheduled_import_args = array(
'post_type' => 'ime_scheduled_import',
'posts_per_page' => -1,
);
$scheduled_imports = get_posts( $scheduled_import_args );
if( !empty( $scheduled_imports ) ){
foreach ( $scheduled_imports as $import ) {
if( $import->ID != '' ){
wp_delete_post( $import->ID, true );
}
}
}
// Remove Import History
$ime_import_history_args = array(
'post_type' => 'ime_import_history',
'posts_per_page' => -1,
);
$ime_import_histories = get_posts( $ime_import_history_args );
if( !empty( $ime_import_histories ) ){
foreach ( $ime_import_histories as $ime_import_history ) {
if( $ime_import_history->ID != '' ){
wp_delete_post( $ime_import_history->ID, true );
}
}
}