| Server IP : 45.94.215.241 / Your IP : 216.73.216.243 Web Server : Apache/2.4.66 (Ubuntu) System : Linux srv2937474766 7.0.0-28-generic #28-Ubuntu SMP PREEMPT_DYNAMIC Sun Jun 21 01:01:36 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.5.4 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/negarestan/wp-content/plugins/bulk-featured-image/ |
Upload File : |
<?php
/**
* Uninstall Bulk Featured Image
*
* Uninstalling Bulk Featured Image deletes plugin options.
*
* @package Bulk Featured Image
* @since 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
$bfi_settings = get_option( 'bfi_settings', true );
$section = 'uninstall';
$uninstall_settings = !empty( $bfi_settings[$section] ) ? $bfi_settings[$section] : '';
$bfi_uninstall = !empty( $uninstall_settings['bfi_uninstall'] ) ? $uninstall_settings['bfi_uninstall'] : '';
if( !empty($bfi_uninstall) && $bfi_uninstall == '1' ){
delete_option( 'bfi_settings' );
}