{"id":1875,"date":"2025-07-30T17:36:57","date_gmt":"2025-07-30T09:36:57","guid":{"rendered":"https:\/\/www.tqazy.com\/?p=1875"},"modified":"2025-07-30T17:40:25","modified_gmt":"2025-07-30T09:40:25","slug":"%e5%88%86%e4%ba%ab%e4%b8%80%e4%b8%8b%e6%9c%ac%e7%ab%99%e7%9a%84%e5%8d%9a%e4%b8%bb%e4%b8%aa%e4%ba%ba%e7%8a%b6%e6%80%81%e5%8a%9f%e8%83%bd","status":"publish","type":"post","link":"https:\/\/www.tqazy.com\/?p=1875","title":{"rendered":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd"},"content":{"rendered":"<p>\u6211\u60f3\u5728\u7f51\u7ad9\u4e0a\u663e\u793a\u81ea\u5df1\u5f53\u524d\u7684\u5fc3\u60c5\u72b6\u6001\uff0c\u5c31\u50cf\u5fae\u4fe1\u7684\u72b6\u6001\u4e00\u6837\u3002<\/p>\n<p>\u4f46\u662fWordPress\u662f\u4e0d\u81ea\u5e26\u8fd9\u4e2a\u529f\u80fd\u7684\uff0c\u6211\u5c31\u81ea\u5df1\u641e\u4e86\u4e00\u4e2a\u3002<\/p>\n<p>\u6548\u679c\uff1a<\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730091328802.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730091328802.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<h2>\u4e00\u3001\u914d\u7f6e\u6e05\u5355<\/h2>\n<p>\u4e0b\u9762\u662f\u6211\u7684\u914d\u7f6e\u6e05\u5355\uff0c\u6211\u53ea\u80fd\u4fdd\u8bc1\u6700\u7ec8\u6548\u679c\u5728\u672c\u914d\u7f6e\u4e0b\u751f\u6548\u3002<\/p>\n<ul>\n<li><strong>\u535a\u5ba2\u5e73\u53f0\uff1a<\/strong> WordPress 6.8.0<\/li>\n<li><strong>\u4e3b\u9898\u6a21\u677f\uff1a<\/strong> Argon 1.3.5<\/li>\n<\/ul>\n<p>\u4ee5\u4e0b\u662f\u914d\u7f6e\u6b65\u9aa4\uff1a<\/p>\n<h2>\u4e8c\u3001\u7f16\u8f91functions.php\u6587\u4ef6<\/h2>\n<p>\u6253\u5f00\u535a\u5ba2\u540e\u53f0 &gt; \u5916\u89c2 &gt; \u4e3b\u9898\u6587\u4ef6\u7f16\u8f91\u5668 &gt; functions.php\uff0c\u62c9\u5230\u6700\u540e\uff0c\u65b0\u589e\u5982\u4e0b\u914d\u7f6e\uff0c\u5e76\u66f4\u65b0\u6587\u4ef6\uff1a<\/p>\n<pre><code class=\"language-php\">\/\/ ------------------------------------------------ \u72b6\u6001start ------------------------------------------------\n\n\/\/ \u6dfb\u52a0\u72b6\u6001\u8bbe\u7f6e\u83dc\u5355\nfunction custom_status_menu() {\n    add_menu_page(\n        &#039;\u72b6\u6001\u8bbe\u7f6e&#039;,\n        &#039;\u72b6\u6001&#039;,\n        &#039;edit_posts&#039;,\n        &#039;custom-status-settings&#039;,\n        &#039;custom_status_settings_page&#039;,\n        &#039;dashicons-smiley&#039;,\n        6\n    );\n}\nadd_action(&#039;admin_menu&#039;, &#039;custom_status_menu&#039;);\n\n\/\/ \u6ce8\u518c\u8bbe\u7f6e\uff08\u6dfb\u52a0\u8f93\u5165\u6846\u9a8c\u8bc1\u903b\u8f91\uff09\nfunction custom_status_register_settings() {\n    register_setting(\n        &#039;custom-status-group&#039;, \n        &#039;current_status&#039;,\n        array(\n            &#039;sanitize_callback&#039; =&gt; &#039;sanitize_custom_status&#039; \/\/ \u65b0\u589e\uff1a\u5904\u7406\u72b6\u6001\u503c\u903b\u8f91\n        )\n    );\n    register_setting(&#039;custom-status-group&#039;, &#039;status_text_color&#039;);\n    register_setting(&#039;custom-status-group&#039;, &#039;status_bg_color&#039;);\n}\nadd_action(&#039;admin_init&#039;, &#039;custom_status_register_settings&#039;);\n\n\/\/ \u65b0\u589e\uff1a\u5904\u7406\u72b6\u6001\u503c\uff08\u4f18\u5148\u4f7f\u7528\u8f93\u5165\u6846\u5185\u5bb9\uff09\nfunction sanitize_custom_status($input) {\n    \/\/ \u83b7\u53d6\u8f93\u5165\u6846\u7684\u503c\n    $custom_input = isset($_POST[&#039;custom_status_input&#039;]) ? sanitize_text_field($_POST[&#039;custom_status_input&#039;]) : &#039;&#039;;\n    \/\/ \u5982\u679c\u8f93\u5165\u6846\u6709\u5185\u5bb9\uff0c\u8fd4\u56de\u8f93\u5165\u6846\u503c\uff1b\u5426\u5219\u8fd4\u56de\u4e0b\u62c9\u6846\u503c\n    return !empty($custom_input) ? $custom_input : $input;\n}\n\n\/\/ \u8bbe\u7f6e\u9875\u9762\u5185\u5bb9\uff08\u65b0\u589e\u8f93\u5165\u6846\uff09\nfunction custom_status_settings_page() {\n        $statuses = array(\n            &#039;&lt;i class=&quot;fa fa-meh-o&quot;&gt;&lt;\/i&gt; emo&#039;,                  \/\/ \u60c5\u7eea\u4f4e\u843d\uff1a\u4e2d\u6027\u8868\u60c5\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-bed&quot;&gt;&lt;\/i&gt; \u75b2\u60eb&#039;,                   \/\/ \u75b2\u60eb\uff1a\u5e8a\uff08\u5173\u8054\u4f11\u606f\uff0c\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-cloud&quot;&gt;&lt;\/i&gt; \u7b49\u5929\u6674&#039;,               \/\/ \u7b49\u5929\u6674\uff1a\u4e91\u6735\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-snapchat-ghost&quot;&gt;&lt;\/i&gt; \u6d3b\u4eba\u5fae\u6b7b&#039;,    \/\/ \u6d88\u6781\u72b6\u6001\uff1a\u5e7d\u7075\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-smile-o&quot;&gt;&lt;\/i&gt; \u7f8e\u6ecb\u6ecb&#039;,             \/\/ \u5f00\u5fc3\uff1a\u5fae\u7b11\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-bolt&quot;&gt;&lt;\/i&gt; \u88c2\u5f00&#039;,                  \/\/ \u5d29\u6e83\uff1a\u95ea\u7535\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-meh-o&quot;&gt;&lt;\/i&gt; \u53d1\u5446&#039;,                 \/\/ \u832b\u7136\uff1a\u4e2d\u6027\u8868\u60c5\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-lightbulb-o&quot;&gt;&lt;\/i&gt; \u80e1\u601d\u4e71\u60f3&#039;,       \/\/ \u601d\u8003\uff1a\u706f\u6ce1\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-hand-peace-o&quot;&gt;&lt;\/i&gt; \u5143\u6c14\u6ee1\u6ee1&#039;,      \/\/ \u6d3b\u529b\uff1a\u6bd4\u8036\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-android&quot;&gt;&lt;\/i&gt; bot&#039;,               \/\/ \u673a\u5668\u4eba\uff1a\u5b89\u5353\u56fe\u6807\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-briefcase&quot;&gt;&lt;\/i&gt; \u642c\u7816ing&#039;,          \/\/ \u5de5\u4f5c\uff1a\u516c\u6587\u5305\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-book&quot;&gt;&lt;\/i&gt; \u6c89\u8ff7\u5b66\u4e60&#039;,              \/\/ \u5b66\u4e60\uff1a\u4e66\u672c\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-spinner&quot;&gt;&lt;\/i&gt; \u5fd9&#039;,                 \/\/ \u5fd9\u788c\uff1a\u65cb\u8f6c\u52a0\u8f7d\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-coffee&quot;&gt;&lt;\/i&gt; \u6478\u9c7cing&#039;,             \/\/ \u6478\u9c7c\uff1a\u5496\u5561\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-child&quot;&gt;&lt;\/i&gt; \u5e26\u5a03&#039;,                 \/\/ \u5e26\u5a03\uff1a\u5c0f\u5b69\u56fe\u6807\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-shield&quot;&gt;&lt;\/i&gt; \u62ef\u6551\u4e16\u754c&#039;,            \/\/ \u5b88\u62a4\uff1a\u76fe\u724c\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-home&quot;&gt;&lt;\/i&gt; \u5b85&#039;,                    \/\/ \u5b85\u5bb6\uff1a\u5bb6\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-bed&quot;&gt;&lt;\/i&gt; \u60f3\u7761\u89c9&#039;,                 \/\/ \u56f0\u5026\uff1a\u5e8a\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-moon-o&quot;&gt;&lt;\/i&gt; \u56f0\u6b7b&#039;,                \/\/ \u6781\u5ea6\u56f0\u5026\uff1a\u6708\u4eae\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-music&quot;&gt;&lt;\/i&gt; \u542c\u6b4cing&#039;,              \/\/ \u542c\u6b4c\uff1a\u97f3\u4e50\u7b26\u53f7\uff08\u5b58\u5728\uff09\n            &#039;&lt;i class=&quot;fa fa-rocket&quot;&gt;&lt;\/i&gt; \u9003\u79bb\u5730\u7403&#039;             \/\/ \u9003\u79bb\uff1a\u706b\u7bad\uff08\u5b58\u5728\uff09\n        );\n\n    $color_presets = array(\n        &#039;text&#039; =&gt; array(\n            &#039;#FFFFFF&#039; =&gt; &#039;\u767d\u8272&#039;,\n            &#039;#D1D5DB&#039; =&gt; &#039;\u6d45\u7070&#039;,\n            &#039;#9CA3AF&#039; =&gt; &#039;\u4e2d\u7070&#039;,\n            &#039;#4B5563&#039; =&gt; &#039;\u6df1\u7070&#039;,\n            &#039;#000000&#039; =&gt; &#039;\u9ed1\u8272&#039;,\n        ),\n        &#039;bg&#039; =&gt; array(\n            &#039;#FFF9C4&#039; =&gt; &#039;\u6d45\u67e0\u9ec4&#039;, &#039;#E8F5E9&#039; =&gt; &#039;\u5ae9\u82bd\u7eff&#039;,\n            &#039;#FFD6BA&#039; =&gt; &#039;\u6696\u6a59&#039;, &#039;#C8E6C9&#039; =&gt; &#039;\u6d45\u8349\u7eff&#039;, &#039;#B3E5FC&#039; =&gt; &#039;\u5929\u9752\u84dd&#039;, &#039;#E1BEE7&#039; =&gt; &#039;\u6de1\u7f57\u5170&#039;, &#039;#FFCDD2&#039; =&gt; &#039;\u6d45\u7eef\u7ea2&#039;,\n            &#039;#FFE0B2&#039; =&gt; &#039;\u871c\u6a59&#039;, &#039;#F5F5F5&#039; =&gt; &#039;\u7c73\u767d\u7070&#039;, &#039;#BBDEFB&#039; =&gt; &#039;\u96fe\u84dd&#039;, &#039;#D7CCC8&#039; =&gt; &#039;\u6d45\u68d5\u7070&#039;, &#039;#F8BBD0&#039; =&gt; &#039;\u67d4\u7c89&#039;, &#039;#C5CAE9&#039; =&gt; &#039;\u6de1\u975b\u84dd&#039;,\n            &#039;#9FA8DA&#039; =&gt; &#039;\u7070\u84dd&#039;, &#039;#CE93D8&#039; =&gt; &#039;\u7070\u7d2b&#039;, &#039;#A1887F&#039; =&gt; &#039;\u6df1\u68d5\u7070&#039;, &#039;#EF9A9A&#039; =&gt; &#039;\u7eef\u7ea2&#039;, &#039;#7986CB&#039; =&gt; &#039;\u975b\u84dd&#039;, &#039;#5C6BC0&#039; =&gt; &#039;\u6697\u975b\u84dd&#039;, &#039;#616161&#039; =&gt; &#039;\u6df1\u70ad\u7070&#039;,\n        )\n    );\n    ?&gt;\n    &lt;div class=&quot;wrap&quot;&gt;\n        &lt;h1&gt;\u4e2a\u4eba\u72b6\u6001\u8bbe\u7f6e&lt;\/h1&gt;\n        &lt;form method=&quot;post&quot; action=&quot;options.php&quot;&gt;\n            &lt;?php settings_fields(&#039;custom-status-group&#039;); ?&gt;\n            &lt;?php do_settings_sections(&#039;custom-status-group&#039;); ?&gt;\n            &lt;table class=&quot;form-table&quot;&gt;\n                &lt;tr valign=&quot;top&quot;&gt;\n                    &lt;th scope=&quot;row&quot;&gt;\u5f53\u524d\u72b6\u6001&lt;\/th&gt;\n                    &lt;td style=&quot;display: flex; gap: 10px; align-items: center;&quot;&gt;\n                        &lt;!-- \u539f\u6709\u4e0b\u62c9\u6846 --&gt;\n                        &lt;select name=&quot;current_status&quot; id=&quot;current_status&quot; style=&quot;padding:5px;min-width:200px;&quot;&gt;\n                            &lt;option value=&quot;&quot;&gt;-- \u9009\u62e9\u72b6\u6001 --&lt;\/option&gt;\n                            &lt;?php \n                            $current = get_option(&#039;current_status&#039;);\n                            foreach($statuses as $status) {\n                                \/\/ \u4e0b\u62c9\u6846\u9ed8\u8ba4\u9009\u4e2d\u72b6\u6001\uff08\u6392\u9664\u624b\u52a8\u8f93\u5165\u7684\u60c5\u51b5\uff09\n                                $is_custom = !in_array($current, $statuses);\n                                $selected = (!$is_custom &amp;&amp; $current == $status) ? &#039;selected&#039; : &#039;&#039;;\n                                echo &quot;&lt;option value=&#039;$status&#039; $selected&gt;$status&lt;\/option&gt;&quot;;\n                            }\n                            ?&gt;\n                        &lt;\/select&gt;\n\n                        &lt;!-- \u65b0\u589e\u624b\u52a8\u8f93\u5165\u6846 --&gt;\n                        &lt;input \n                            type=&quot;text&quot; \n                            name=&quot;custom_status_input&quot; \n                            id=&quot;custom_status_input&quot; \n                            placeholder=&quot;\u6216\u624b\u52a8\u8f93\u5165\u72b6\u6001&quot; \n                            style=&quot;padding:5px;min-width:100px;&quot;\n                            value=&quot;&lt;?php \n                                \/\/ \u56de\u663e\u624b\u52a8\u8f93\u5165\u7684\u503c\uff08\u5982\u679c\u662f\u81ea\u5b9a\u4e49\u72b6\u6001\uff09\n                                $current = get_option(&#039;current_status&#039;);\n                                echo !in_array($current, $statuses) ? esc_attr($current) : &#039;&#039;;\n                            ?&gt;&quot;\n                        &gt;\n                    &lt;\/td&gt;\n                &lt;\/tr&gt;\n                &lt;tr valign=&quot;top&quot;&gt;\n                    &lt;th scope=&quot;row&quot;&gt;\u6587\u5b57\u989c\u8272&lt;\/th&gt;\n                    &lt;td&gt;\n                        &lt;select name=&quot;status_text_color&quot; id=&quot;status_text_color&quot; style=&quot;padding:5px;min-width:200px;&quot;&gt;\n                            &lt;?php \n                            $current_text_color = get_option(&#039;status_text_color&#039;, &#039;#ffffff&#039;);\n                            foreach($color_presets[&#039;text&#039;] as $value =&gt; $label) {\n                                $selected = ($current_text_color == $value) ? &#039;selected&#039; : &#039;&#039;;\n                                echo &quot;&lt;option value=&#039;$value&#039; $selected style=&#039;color: $value;&#039;&gt;$label&lt;\/option&gt;&quot;;\n                            }\n                            ?&gt;\n                        &lt;\/select&gt;\n                    &lt;\/td&gt;\n                &lt;\/tr&gt;\n                &lt;tr valign=&quot;top&quot;&gt;\n                    &lt;th scope=&quot;row&quot;&gt;\u80cc\u666f\u989c\u8272&lt;\/th&gt;\n                    &lt;td&gt;\n                        &lt;select name=&quot;status_bg_color&quot; id=&quot;status_bg_color&quot; style=&quot;padding:5px;min-width:200px;&quot;&gt;\n                            &lt;?php \n                            $current_bg_color = get_option(&#039;status_bg_color&#039;, &#039;#8d9deb&#039;);\n                            foreach($color_presets[&#039;bg&#039;] as $value =&gt; $label) {\n                                $selected = ($current_bg_color == $value) ? &#039;selected&#039; : &#039;&#039;;\n                                echo &quot;&lt;option value=&#039;$value&#039; $selected style=&#039;background-color: $value; color: white;&#039;&gt;$label&lt;\/option&gt;&quot;;\n                            }\n                            ?&gt;\n                        &lt;\/select&gt;\n                    &lt;\/td&gt;\n                &lt;\/tr&gt;\n            &lt;\/table&gt;\n            &lt;?php submit_button(); ?&gt;\n        &lt;\/form&gt;\n    &lt;\/div&gt;\n    &lt;?php\n}\n\n\/\/ \u4e3a\u540e\u53f0\u72b6\u6001\u914d\u7f6e\u9875\u9762\u6dfb\u52a0\u81ea\u5b9a\u4e49CSS\nfunction custom_status_admin_css() {\n    \/\/ \u53ea\u5728\u72b6\u6001\u914d\u7f6e\u9875\u9762\u52a0\u8f7d\u8be5CSS\n    global $pagenow;\n    if ($pagenow == &#039;admin.php&#039; &amp;&amp; isset($_GET[&#039;page&#039;]) &amp;&amp; $_GET[&#039;page&#039;] == &#039;custom-status-settings&#039;) {\n        ?&gt;\n        &lt;style type=&quot;text\/tailwindcss&quot;&gt;\n            @layer utilities {\n                .status-color-option {\n                    @apply relative pl-8 text-black;\n                }\n                .status-color-option::before {\n                    @apply absolute left-2 top-1\/2 -translate-y-1\/2 w-4 h-4 rounded border border-gray-200;\n                }\n            }\n        &lt;\/style&gt;\n        &lt;style type=&quot;text\/css&quot;&gt;\n            \/* \u989c\u8272\u9009\u9879\u663e\u793a\u4f18\u5316 *\/\n            #status_text_color option,\n            #status_bg_color option {\n                @apply status-color-option;\n            }\n\n            \/* \u6587\u672c\u989c\u8272\u9009\u9879\u7684\u6587\u5b57\u548c\u80cc\u666f *\/\n            #status_text_color option[value=&quot;#FFFFFF&quot;] { background-color: #6B7280 !important; color: #FFFFFF !important; }\n            #status_text_color option[value=&quot;#D1D5DB&quot;] { color: #D1D5DB !important; }\n            #status_text_color option[value=&quot;#9CA3AF&quot;] { color: #9CA3AF !important; }\n            #status_text_color option[value=&quot;#4B5563&quot;] { color: #4B5563 !important; }\n            #status_text_color option[value=&quot;#000000&quot;] { color: #000000 !important; }\n\n            \/* \u6587\u672c\u989c\u8272\u9009\u9879\u7684\u989c\u8272\u5757 *\/\n            #status_text_color option[value=&quot;#FFFFFF&quot;]::before { background-color: #FFFFFF; }\n            #status_text_color option[value=&quot;#D1D5DB&quot;]::before { background-color: #D1D5DB; }\n            #status_text_color option[value=&quot;#9CA3AF&quot;]::before { background-color: #9CA3AF; }\n            #status_text_color option[value=&quot;#4B5563&quot;]::before { background-color: #4B5563; }\n            #status_text_color option[value=&quot;#000000&quot;]::before { background-color: #000000; }\n\n            \/* \u80cc\u666f\u989c\u8272\u9009\u9879\u7684\u989c\u8272\u5757 *\/\n            #status_bg_color option[value=&quot;#FFF9C4&quot;]::before { background-color: #FFF9C4; }\n            #status_bg_color option[value=&quot;#E8F5E9&quot;]::before { background-color: #E8F5E9; }\n            #status_bg_color option[value=&quot;#FFD6BA&quot;]::before { background-color: #FFD6BA; }\n            #status_bg_color option[value=&quot;#C8E6C9&quot;]::before { background-color: #C8E6C9; }\n            #status_bg_color option[value=&quot;#B3E5FC&quot;]::before { background-color: #B3E5FC; }\n            #status_bg_color option[value=&quot;#E1BEE7&quot;]::before { background-color: #E1BEE7; }\n            #status_bg_color option[value=&quot;#FFCDD2&quot;]::before { background-color: #FFCDD2; }\n            #status_bg_color option[value=&quot;#FFE0B2&quot;]::before { background-color: #FFE0B2; }\n            #status_bg_color option[value=&quot;#F5F5F5&quot;]::before { background-color: #F5F5F5; }\n            #status_bg_color option[value=&quot;#BBDEFB&quot;]::before { background-color: #BBDEFB; }\n            #status_bg_color option[value=&quot;#D7CCC8&quot;]::before { background-color: #D7CCC8; }\n            #status_bg_color option[value=&quot;#F8BBD0&quot;]::before { background-color: #F8BBD0; }\n            #status_bg_color option[value=&quot;#C5CAE9&quot;]::before { background-color: #C5CAE9; }\n            #status_bg_color option[value=&quot;#9FA8DA&quot;]::before { background-color: #9FA8DA; }\n            #status_bg_color option[value=&quot;#CE93D8&quot;]::before { background-color: #CE93D8; }\n            #status_bg_color option[value=&quot;#A1887F&quot;]::before { background-color: #A1887F; }\n            #status_bg_color option[value=&quot;#EF9A9A&quot;]::before { background-color: #EF9A9A; }\n            #status_bg_color option[value=&quot;#7986CB&quot;]::before { background-color: #7986CB; }\n            #status_bg_color option[value=&quot;#5C6BC0&quot;]::before { background-color: #5C6BC0; }\n            #status_bg_color option[value=&quot;#616161&quot;]::before { background-color: #616161; }\n        &lt;\/style&gt;\n        &lt;?php\n    }\n}\nadd_action(&#039;admin_head&#039;, &#039;custom_status_admin_css&#039;);\n\n\/\/ ------------------------------------------------ \u72b6\u6001end ------------------------------------------------<\/code><\/pre>\n<h2>\u4e09\u3001\u7f16\u8f91sidebar.php\u6587\u4ef6<\/h2>\n<p>\u6253\u5f00\u535a\u5ba2\u540e\u53f0 &gt; \u5916\u89c2 &gt; \u4e3b\u9898\u6587\u4ef6\u7f16\u8f91\u5668 &gt; \u7f16\u8f91sidebar.php\uff0c\u627e\u5230\u4f60\u5934\u50cf\u7684\u4f4d\u7f6e\uff0c\u65b0\u589e\u5982\u4e0b\u914d\u7f6e\uff0c\u5e76\u66f4\u65b0\u6587\u4ef6\uff1a<\/p>\n<p>\u4f4d\u7f6e\u786e\u5b9a\u6280\u5de7\uff1a\u5982\u679c\u70b9\u51fb\u4f60\u7684\u5934\u50cf\u80fd\u8df3\u8f6c\u4f60\u7684\u201c\u5173\u4e8e\u6211\u201d\u7684\u9875\u9762\uff0c\u90a3\u4e48\u4f60\u590d\u5236\u201c\u5173\u4e8e\u6211\u201d\u7684\u7f51\u5740\uff0c\u641c\u7d22\u8fd9\u4e2a\u6587\u4ef6\uff0c\u5c31\u80fd\u786e\u5b9a\uff1a<\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092011649.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092011649.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<pre><code class=\"language-php\">&lt;!-- \u72b6\u6001\u4ee3\u7801start --&gt;\n                                &lt;?php $status = get_option(&#039;current_status&#039;); ?&gt;\n                                &lt;?php $text_color = get_option(&#039;status_text_color&#039;, &#039;#ffffff&#039;); ?&gt;\n                                &lt;?php $bg_color = get_option(&#039;status_bg_color&#039;, &#039;#8d9deb&#039;); ?&gt;\n                                &lt;?php if (!empty($status)): ?&gt;\n                                    &lt;!-- \u5173\u952e\u4fee\u6539\uff1a\u7528 wp_kses_post() \u66ff\u6362 esc_html()\uff0c\u5141\u8bb8&lt;i&gt;\u6807\u7b7e\u89e3\u6790 --&gt;\n                                    &lt;span class=&quot;status-badge&quot; style=&quot;color: &lt;?php echo esc_attr($text_color); ?&gt;; background-color: &lt;?php echo esc_attr($bg_color); ?&gt;;&quot;&gt;\n                                        &lt;?php echo wp_kses_post($status); \/\/ \u4fdd\u7559HTML\u6807\u7b7e\uff0c\u6b63\u5e38\u6e32\u67d3\u56fe\u6807 ?&gt;\n                                    &lt;\/span&gt;\n                                &lt;?php endif; ?&gt;\n                                &lt;!-- \u72b6\u6001\u4ee3\u7801end --&gt;<\/code><\/pre>\n<h2>\u56db\u3001\u65b0\u589e\u81ea\u5b9a\u4e49CSS\u6837\u5f0f<\/h2>\n<p>\u6253\u5f00\u535a\u5ba2\u540e\u53f0 &gt; \u5916\u89c2 &gt; \u81ea\u5b9a\u4e49 &gt; \u989d\u5916CSS &gt; \u62c9\u5230\u6700\u540e\u65b0\u589e\u5982\u4e0b\u5185\u5bb9\u5e76\u53d1\u5e03\uff1a<\/p>\n<pre><code class=\"language-css\">\/* \u72b6\u6001\u4ee3\u7801start *\/\n.profile-avatar {\n    position: relative;\n    display: inline-block;\n}\n\n.status-badge {\n    position: absolute;\n    left: calc(100% - 90px);\n    top: 63px;\n    font-size: 12px;\n    padding: 2px 8px;\n    border-radius: 12px;\n    box-shadow: 0 2px 4px rgba(0,0,0,0.1);\n    white-space: nowrap;\n    text-align: left;\n}\n\n\/* \u72b6\u6001\u4ee3\u7801end *\/<\/code><\/pre>\n<p>\u8fd9\u4e2a<code>left<\/code>\u548c<code>top<\/code>\u90e8\u5206\uff0c\u53ef\u4ee5\u6839\u636e\u201c\u72b6\u6001\u201d\u6807\u7b7e\u7684\u5b9e\u9645\u4f4d\u7f6e\u8fdb\u884c\u9002\u5f53\u8c03\u6574\u3002<\/p>\n<h2>\u4e94\u3001\u5f00\u59cb\u5206\u4eab\u4e2a\u4eba\u72b6\u6001<\/h2>\n<p>\u4e0a\u9762\u914d\u7f6e\u597d\u4e4b\u540e\uff0c\u5237\u65b0\u540e\u53f0\uff0c\u4f1a\u589e\u52a0\u4e00\u4e2a\u83dc\u5355\uff1a<\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092525886.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092525886.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092616348.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092616348.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092615941.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092615941.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092613395.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092613395.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p>\u9009\u62e9\u597d\u4e4b\u540e\uff0c\u4fdd\u5b58\u66f4\u6539\u3002<\/p>\n<p>\u524d\u7aef\u9875\u9762\u5c31\u80fd\u663e\u793a\uff1a<\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092817231.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092817231.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p><div class='fancybox-wrapper lazyload-container-unload' data-fancybox='post-images' href='https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092827567.png'><img class=\"lazyload lazyload-style-6\" src=\"data:image\/svg+xml;base64,PCEtLUFyZ29uTG9hZGluZy0tPgo8c3ZnIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmMDAiPjxnPjwvZz4KPC9zdmc+\"  decoding=\"async\" data-original=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730092827567.png\" src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB\/AAffA0nNPuCLAAAAAElFTkSuQmCC\" alt=\"\" \/><\/div><\/p>\n<p>\u9884\u8bbe\u7684\u72b6\u6001\u5e26\u6709\u56fe\u6807\uff0c\u8f93\u5165\u7684\u72b6\u6001\u6ca1\u6709\u56fe\u6807\u3002<\/p>\n<p>\u5982\u679c\u60a8\u60f3\u66f4\u6362\u5176\u4ed6\u72b6\u6001\u6216\u8005\u989c\u8272\uff0c\u53ef\u4ee5\u4fee\u6539\u4e0a\u9762\u5728functions.php\u7684\u4ee3\u7801\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u535a\u5ba2\u4f5c\u4e3a\u81ea\u7559\u5730\uff0c\u5e94\u8be5\u662f\u80fd\u591f\u8868\u73b0\u81ea\u5df1\u60c5\u7eea\u7684\uff0c\u6bd4\u5982\u5728\u73b0\u5b9e\u4e16\u754c\u4e0d\u597d\u8868\u8fbe\u7684\u5fc3\u60c5\u3002<\/p>\n","protected":false},"author":1,"featured_media":1887,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[121],"tags":[120],"class_list":["post-1875","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-121","tag-120"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.tqazy.com\/?p=1875\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2\" \/>\n<meta property=\"og:description\" content=\"\u535a\u5ba2\u4f5c\u4e3a\u81ea\u7559\u5730\uff0c\u5e94\u8be5\u662f\u80fd\u591f\u8868\u73b0\u81ea\u5df1\u60c5\u7eea\u7684\uff0c\u6bd4\u5982\u5728\u73b0\u5b9e\u4e16\u754c\u4e0d\u597d\u8868\u8fbe\u7684\u5fc3\u60c5\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.tqazy.com\/?p=1875\" \/>\n<meta property=\"og:site_name\" content=\"\u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-30T09:36:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-30T09:40:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"493\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"\u9676\u5176\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u9676\u5176\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875\"},\"author\":{\"name\":\"\u9676\u5176\",\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e\"},\"headline\":\"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd\",\"datePublished\":\"2025-07-30T09:36:57+00:00\",\"dateModified\":\"2025-07-30T09:40:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875\"},\"wordCount\":25,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e\"},\"image\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png\",\"keywords\":[\"\u5efa\u7ad9\u5206\u4eab\"],\"articleSection\":[\"\u5efa\u7ad9\u5206\u4eab\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.tqazy.com\/?p=1875#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.tqazy.com\/?p=1875\",\"url\":\"https:\/\/www.tqazy.com\/?p=1875\",\"name\":\"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2\",\"isPartOf\":{\"@id\":\"https:\/\/www.tqazy.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#primaryimage\"},\"thumbnailUrl\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png\",\"datePublished\":\"2025-07-30T09:36:57+00:00\",\"dateModified\":\"2025-07-30T09:40:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.tqazy.com\/?p=1875\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#primaryimage\",\"url\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png\",\"contentUrl\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png\",\"width\":1920,\"height\":493},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.tqazy.com\/?p=1875#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.tqazy.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.tqazy.com\/#website\",\"url\":\"https:\/\/www.tqazy.com\/\",\"name\":\"\u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2\",\"description\":\"\u5f53\u4e0b\uff0c\u5373\u662f\u672a\u6765\",\"publisher\":{\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e\"},\"alternateName\":\"TaoQi's Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.tqazy.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e\",\"name\":\"\u9676\u5176\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2024\/06\/20240604021741672.jpg\",\"contentUrl\":\"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2024\/06\/20240604021741672.jpg\",\"width\":940,\"height\":940,\"caption\":\"\u9676\u5176\"},\"logo\":{\"@id\":\"https:\/\/www.tqazy.com\/#\/schema\/person\/image\/\"},\"description\":\"\u4e00\u4e2a\u5f88\u61d2\u7684\u7a0b\u5e8f\u5458\",\"sameAs\":[\"https:\/\/www.tqazy.com\"],\"url\":\"https:\/\/www.tqazy.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.tqazy.com\/?p=1875","og_locale":"zh_CN","og_type":"article","og_title":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2","og_description":"\u535a\u5ba2\u4f5c\u4e3a\u81ea\u7559\u5730\uff0c\u5e94\u8be5\u662f\u80fd\u591f\u8868\u73b0\u81ea\u5df1\u60c5\u7eea\u7684\uff0c\u6bd4\u5982\u5728\u73b0\u5b9e\u4e16\u754c\u4e0d\u597d\u8868\u8fbe\u7684\u5fc3\u60c5\u3002","og_url":"https:\/\/www.tqazy.com\/?p=1875","og_site_name":"\u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2","article_published_time":"2025-07-30T09:36:57+00:00","article_modified_time":"2025-07-30T09:40:25+00:00","og_image":[{"width":1920,"height":493,"url":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png","type":"image\/png"}],"author":"\u9676\u5176","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"\u9676\u5176","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tqazy.com\/?p=1875#article","isPartOf":{"@id":"https:\/\/www.tqazy.com\/?p=1875"},"author":{"name":"\u9676\u5176","@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e"},"headline":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd","datePublished":"2025-07-30T09:36:57+00:00","dateModified":"2025-07-30T09:40:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.tqazy.com\/?p=1875"},"wordCount":25,"commentCount":4,"publisher":{"@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e"},"image":{"@id":"https:\/\/www.tqazy.com\/?p=1875#primaryimage"},"thumbnailUrl":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png","keywords":["\u5efa\u7ad9\u5206\u4eab"],"articleSection":["\u5efa\u7ad9\u5206\u4eab"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.tqazy.com\/?p=1875#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.tqazy.com\/?p=1875","url":"https:\/\/www.tqazy.com\/?p=1875","name":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd | \u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2","isPartOf":{"@id":"https:\/\/www.tqazy.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.tqazy.com\/?p=1875#primaryimage"},"image":{"@id":"https:\/\/www.tqazy.com\/?p=1875#primaryimage"},"thumbnailUrl":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png","datePublished":"2025-07-30T09:36:57+00:00","dateModified":"2025-07-30T09:40:25+00:00","breadcrumb":{"@id":"https:\/\/www.tqazy.com\/?p=1875#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.tqazy.com\/?p=1875"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.tqazy.com\/?p=1875#primaryimage","url":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png","contentUrl":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2025\/07\/20250730093450567.png","width":1920,"height":493},{"@type":"BreadcrumbList","@id":"https:\/\/www.tqazy.com\/?p=1875#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.tqazy.com\/"},{"@type":"ListItem","position":2,"name":"\u5206\u4eab\u4e00\u4e0b\u672c\u7ad9\u7684\u535a\u4e3b\u4e2a\u4eba\u72b6\u6001\u529f\u80fd"}]},{"@type":"WebSite","@id":"https:\/\/www.tqazy.com\/#website","url":"https:\/\/www.tqazy.com\/","name":"\u9676\u5176\u7684\u4e2a\u4eba\u535a\u5ba2","description":"\u5f53\u4e0b\uff0c\u5373\u662f\u672a\u6765","publisher":{"@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e"},"alternateName":"TaoQi's Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.tqazy.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/b2e89d56e70f15c261012417c5ef2c4e","name":"\u9676\u5176","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/image\/","url":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2024\/06\/20240604021741672.jpg","contentUrl":"https:\/\/oss.tqazy.com\/wordpress\/autoFile\/2024\/06\/20240604021741672.jpg","width":940,"height":940,"caption":"\u9676\u5176"},"logo":{"@id":"https:\/\/www.tqazy.com\/#\/schema\/person\/image\/"},"description":"\u4e00\u4e2a\u5f88\u61d2\u7684\u7a0b\u5e8f\u5458","sameAs":["https:\/\/www.tqazy.com"],"url":"https:\/\/www.tqazy.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/posts\/1875","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1875"}],"version-history":[{"count":3,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/posts\/1875\/revisions"}],"predecessor-version":[{"id":1889,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/posts\/1875\/revisions\/1889"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=\/wp\/v2\/media\/1887"}],"wp:attachment":[{"href":"https:\/\/www.tqazy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1875"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1875"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tqazy.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1875"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}