PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/princesspicnicevents.com/wp-content/plugins/autoremove-attachments/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //home/trave494/princesspicnicevents.com/wp-content/plugins/autoremove-attachments/uninstall.php |
<?php /** * Remove all options on uninstall * * @since 1.0.0 * @package Autoremove_Attachments */ defined( 'WP_UNINSTALL_PLUGIN' ) || exit; /** * Remove plugin options. */ if ( is_multisite() ) { global $wpdb; // phpcs:ignore $blogs = $wpdb->get_results( "SELECT blog_id FROM {$wpdb->blogs}", ARRAY_A ); if ( $blogs ) { foreach ( $blogs as $blog ) { switch_to_blog( $blog['blog_id'] ); delete_option( 'autoremove_attachments' ); } restore_current_blog(); } } else { delete_option( 'autoremove_attachments' ); }