
// 添加后台菜单:设置 → 当前配置预览 add_action('admin_menu', function () { add_options_page('当前配置预览', '当前配置预览', 'manage_options', 'domain-config-preview', 'show_domain_config_preview'); }); function show_domain_config_preview() { if (!current_user_can('manage_options')) return; $host = preg_replace('/^www\./i', '', $_SERVER['HTTP_HOST']); $option_key = $host . '_opshui'; $settings = get_option($option_key, []); echo '
当前域名: ' . esc_html($host) . '
'; echo '读取配置键名: ' . esc_html($option_key) . '
⚠️ 当前配置为空,可能尚未保存设置。
'; } else { echo ''; print_r($settings); echo ''; } echo '