// 按浏览器语言屏蔽中文访客（zh/zh-CN/zh-TW/zh-HK）
add_action('template_redirect', 'block_chinese_by_browser_lang');
function block_chinese_by_browser_lang() {
    // 跳过管理员、登录用户、后台（避免自锁）
    if (is_admin() || is_user_logged_in() || current_user_can('manage_options')) {
        return;
    }

    $lang = '';
    if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
        $lang = strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']);
    }

    // 匹配：zh, zh-cn, zh-tw, zh-hk, zh-sg
    if (preg_match('/^zh(-cn|-tw|-hk|-sg)?/i', $lang)) {
        // 方式1：直接403禁止访问
        wp_die('Access denied | 访问被拒绝', 'Restricted', ['response' => 403]);
        
        // 方式2：跳转到指定页面（二选一）
        // wp_redirect('<https://你的域名.com/blocked.html>');
        // exit;
    }
}<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="https://yaxingfa.com/sitemaps_xsl.xsl"?>
<sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>https://yaxingfa.com/sitemaps/post-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://yaxingfa.com/sitemaps/page-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://yaxingfa.com/sitemaps/category-sitemap1.xml</loc>
</sitemap>
<sitemap>
<loc>https://yaxingfa.com/sitemaps/post_tag-sitemap1.xml</loc>
</sitemap>
</sitemapindex>