// ===== FORCE SIMPAN FAVICON (VERSI LEBIH KUAT) =====
add_action(‘customize_save_after’, function() {if (!isset($_POST['customized'])) return; $raw = stripslashes($_POST['customized']); $data = json_decode($raw, true); if (json_last_error() !== JSON_ERROR_NONE) return; if (!empty($data['site_icon'])) { update_option('site_icon', intval($data['site_icon'])); }
});

