![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/easy-accordion-free/ |
<?php defined( 'WP_UNINSTALL_PLUGIN' ) || exit; // Load LCP file. require_once 'plugin-main.php'; $settings = get_option( 'sp_eap_settings' ); if ( true === ( $settings['eap_data_remove'] ) ) { // Delete Accordions and shortcodes. global $wpdb; $wpdb->query( "DELETE FROM wp_posts WHERE post_type = 'sp_easy_accordion'" ); $wpdb->query( 'DELETE FROM wp_postmeta WHERE post_id NOT IN (SELECT id FROM wp_posts)' ); $wpdb->query( 'DELETE FROM wp_term_relationships WHERE object_id NOT IN (SELECT id FROM wp_posts)' ); // Remove option. delete_option( 'sp_eap_settings' ); delete_option( 'sp_eafree_review_notice_dismiss' ); delete_option( '_transient_timeout_sp-eap-framework-transient' ); delete_option( '_transient_sp-eap-framework-transient' ); delete_option( '_transient_timeout_eapro-metabox-transient' ); delete_option( '_transient_eapro-metabox-transient' ); // Remove options in Multisite. delete_site_option( 'sp_eap_settings' ); delete_site_option( 'sp_eafree_review_notice_dismiss' ); delete_site_option( '_transient_timeout_spf-eap-framework-transient' ); delete_site_option( '_transient_spf-eap-framework-transient' ); delete_site_option( '_transient_timeout_eapro-metabox-transient' ); delete_site_option( '_transient_eapro-metabox-transient' ); }