{"id":1973,"date":"2025-06-10T18:32:42","date_gmt":"2025-06-10T10:32:42","guid":{"rendered":"https:\/\/www.zhaozhao123.cn\/wpcms\/wpdt\/1973.html"},"modified":"2025-06-10T18:32:42","modified_gmt":"2025-06-10T10:32:42","slug":"%e5%a6%82%e4%bd%95%e4%bb%8ewordpress%e6%96%87%e7%ab%a0%e5%be%aa%e7%8e%af%e4%b8%ad%e6%8e%92%e9%99%a4%e6%9c%80%e6%96%b0%e6%96%87%e7%ab%a0","status":"publish","type":"post","link":"https:\/\/www.zhaozhao123.cn\/wpcms\/post\/1973.html","title":{"rendered":"\u5982\u4f55\u4eceWordPress\u6587\u7ae0\u5faa\u73af\u4e2d\u6392\u9664\u6700\u65b0\u6587\u7ae0"},"content":{"rendered":"<div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--1\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/dyA-1-400x300.jpg\" alt=\"Bug&#32534;&#35793;&#29422;\" class=\"wp-image-1842\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">Bug&#32534;&#35793;&#29422;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<p>&#35201;&#20174;WordPress&#25991;&#31456;&#24490;&#29615;&#20013;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#65292;&#20320;&#21487;&#20197;&#20351;&#29992;&#20197;&#19979;&#26041;&#27861;&#65306;<\/p>\n<ol>\n<li>\n<p><strong>&#20351;&#29992;<code>posts_where<\/code>&#36807;&#28388;&#22120;<\/strong>&#65306;\n&#36890;&#36807;&#20462;&#25913;<code>posts_where<\/code>&#36807;&#28388;&#22120;&#26469;&#25490;&#38500;&#26368;&#26032;&#30340;&#25991;&#31456;&#12290;<\/p>\n<\/li>\n<li>\n<p><strong>&#21019;&#24314;&#33258;&#23450;&#20041;&#25554;&#20214;&#25110;&#20027;&#39064;&#20989;&#25968;<\/strong>&#65306;\n&#20351;&#29992;PHP&#32534;&#20889;&#20989;&#25968;&#65292;&#21160;&#24577;&#22320;&#29983;&#25104;&#25991;&#31456;&#21015;&#34920;&#12290;<\/p>\n<\/li>\n<li>\n<p><strong>&#20351;&#29992;<code>WP_Query<\/code>&#30340;<code>meta_query<\/code>&#21442;&#25968;<\/strong>&#65306;\n&#22914;&#26524;&#20320;&#38656;&#35201;&#26356;&#22797;&#26434;&#30340;&#36923;&#36753;&#65292;&#21487;&#20197;&#20351;&#29992;<code>meta_query<\/code>&#21442;&#25968;&#12290;<\/p>\n<\/li>\n<\/ol>\n<p>&#19979;&#38754;&#26159;&#31034;&#20363;&#20195;&#30721;&#21644;&#35814;&#32454;&#27493;&#39588;&#65306;<\/p>\n<h3>&#31034;&#20363;&#20195;&#30721;<\/h3>\n<pre><code class=\"language-php\">\/\/ &#21019;&#24314;&#33258;&#23450;&#20041;&#20989;&#25968;&#65292;&#29992;&#20110;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;\nfunction exclude_latest_posts($query) {\n    if ($query-&gt;is_home() &amp;&amp; $query-&gt;is_main_query()) { \/\/ &#26816;&#26597;&#26159;&#21542;&#20026;&#39318;&#39029;&#24182;&#20026;&#20027;&#26597;&#35810;\n        $args = array(\n            'post__not_in' =&gt; get_option('recent_posts'), \/\/ &#33719;&#21462;&#26368;&#26032;&#25991;&#31456;ID&#25968;&#32452;\n        );\n        $query-&gt;set('post__in', $query-&gt;get('post__in') - array_keys($args['post__not_in'])); \/\/ &#31227;&#38500;&#26368;&#26032;&#25991;&#31456;ID\n    }\n}\nadd_filter('pre_get_posts', 'exclude_latest_posts');<\/code><\/pre>\n<h3>&#27493;&#39588;&#35828;&#26126;<\/h3>\n<ol>\n<li><strong>&#21019;&#24314;&#33258;&#23450;&#20041;&#20989;&#25968;<\/strong>&#65306;&#19978;&#36848;&#20195;&#30721;&#23450;&#20041;&#20102;&#19968;&#20010;&#21517;&#20026;<code>exclude_latest_posts<\/code>&#30340;&#33258;&#23450;&#20041;&#20989;&#25968;&#12290;<\/li>\n<li><strong>&#26816;&#26597;&#26465;&#20214;<\/strong>&#65306;&#35813;&#20989;&#25968;&#39318;&#20808;&#26816;&#26597;&#24403;&#21069;&#39029;&#38754;&#26159;&#21542;&#20026;&#39318;&#39029;&#65288;<code>$query-&gt;is_home()<\/code>&#65289;&#24182;&#19988;&#26159;&#21542;&#20026;&#20027;&#26597;&#35810;&#65288;<code>$query-&gt;is_main_query()<\/code>&#65289;&#12290;<\/li>\n<li><strong>&#33719;&#21462;&#26368;&#26032;&#25991;&#31456;ID<\/strong>&#65306;&#20351;&#29992;<code>get_option('recent_posts')<\/code>&#33719;&#21462;&#26368;&#26032;&#25991;&#31456;ID&#25968;&#32452;&#12290;<\/li>\n<li><strong>&#31227;&#38500;&#26368;&#26032;&#25991;&#31456;ID<\/strong>&#65306;&#36890;&#36807;&#35843;&#29992;<code>$query-&gt;set('post__in', ...)<\/code>&#35774;&#32622;&#26032;&#30340;&#25991;&#31456;ID&#25968;&#32452;&#65292;&#20174;&#32780;&#31227;&#38500;&#26368;&#26032;&#25991;&#31456;&#12290;<\/li>\n<\/ol>\n<h3>&#25928;&#26524;<\/h3>\n<p>&#24403;&#36825;&#20010;&#20989;&#25968;&#34987;&#28155;&#21152;&#21040;WordPress&#30340;&#38057;&#23376;&#21518;&#65292;&#27599;&#27425;&#24403;&#20320;&#35775;&#38382;&#39318;&#39029;&#26102;&#65292;&#23427;&#37117;&#20250;&#33258;&#21160;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#65292;&#30830;&#20445;&#39318;&#39029;&#26174;&#31034;&#30340;&#26159;&#20854;&#20182;&#25991;&#31456;&#32780;&#19981;&#26159;&#26368;&#26032;&#30340;&#37027;&#31687;&#12290;<\/p>\n<h3>&#27880;&#24847;&#20107;&#39033;<\/h3>\n<ul>\n<li>&#36825;&#20010;&#26041;&#27861;&#36866;&#29992;&#20110;&#38745;&#24577;&#39029;&#38754;&#65288;&#22914;&#21338;&#23458;&#39318;&#39029;&#65289;&#65292;&#22914;&#26524;&#38656;&#35201;&#21160;&#24577;&#26356;&#26032;&#65292;&#21487;&#33021;&#38656;&#35201;&#32467;&#21512;<code>WP_Query<\/code>&#30340;<code>meta_query<\/code>&#21442;&#25968;&#26469;&#23454;&#29616;&#26356;&#22797;&#26434;&#30340;&#38656;&#27714;&#12290;<\/li>\n<li>&#30830;&#20445;&#22312;&#23433;&#20840;&#30340;&#21069;&#25552;&#19979;&#20351;&#29992;&#27492;&#20195;&#30721;&#65292;&#36991;&#20813;&#28508;&#22312;&#30340;&#23433;&#20840;&#39118;&#38505;&#12290;<\/li>\n<\/ul>\n<p>&#24076;&#26395;&#36825;&#33021;&#24110;&#21161;&#20320;&#35299;&#20915;&#20174;WordPress&#25991;&#31456;&#24490;&#29615;&#20013;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#30340;&#38382;&#39064;&#65281;&#22914;&#26524;&#20320;&#26377;&#20219;&#20309;&#36827;&#19968;&#27493;&#30340;&#38382;&#39064;&#65292;&#35831;&#38543;&#26102;&#25552;&#38382;&#12290;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div><div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--2\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/zp-400x300.jpg\" alt=\"&#40657;&#26495;&#21069;&#30340;Bug&#35821;&#27861;&#35762;&#24072;\" class=\"wp-image-1849\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">&#40657;&#26495;&#21069;&#30340;Bug&#35821;&#27861;&#35762;&#24072;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<h3>&#25945;&#26696;&#22823;&#32434;<\/h3>\n<ol>\n<li><strong>&#24341;&#20837;<\/strong><\/li>\n<li><strong>&#23450;&#20041;&#38382;&#39064;<\/strong>&#65306;&#25214;&#20986;&#24182;&#25490;&#38500;WordPress&#25991;&#31456;&#21015;&#34920;&#20013;&#30340;&ldquo;&#26368;&#26032;&rdquo;&#25991;&#31456;&#12290;<\/li>\n<li><strong>&#35299;&#20915;&#26041;&#26696;<\/strong>\n<ol>\n<li><strong>&#20351;&#29992;<code>WP_Query<\/code>&#36807;&#28388;&#22120;<\/strong>&#65288;&#36866;&#29992;&#20110;WordPress 5.0+&#65289;<\/li>\n<li><strong>&#33258;&#23450;&#20041;&#20989;&#25968;<\/strong>&#65288;&#36866;&#29992;&#20110;WordPress 4.9-5.0&#65289;<\/li>\n<\/ol><\/li>\n<li><strong>&#31034;&#20363;&#20195;&#30721;<\/strong>\n<ul>\n<li><strong>&#33258;&#23450;&#20041;&#20989;&#25968;&#31034;&#20363;<\/strong>&#65288;WordPress 4.9-5.0&#65289;<\/li>\n<li><strong>WP_Query &#31034;&#20363;<\/strong>&#65288;WordPress 5.0+&#65289;<\/li>\n<\/ul><\/li>\n<\/ol>\n<hr>\n<h4>1. &#24341;&#20837;<\/h4>\n<p>&#39318;&#20808;&#20102;&#35299;&#19968;&#19979;WordPress&#30340;&#25991;&#31456;&#32467;&#26500;&#21644;&#26597;&#35810;&#26041;&#27861;&#12290;<\/p>\n<pre><code class=\"language-html\">&lt;?php\n\/**\n * WordPress function to get the latest posts.\n *\n * @param int $post_type The post type to query for.\n *\/\nfunction wp_get_latest_posts($post_type = 'all') {\n    global $wpdb;\n\n    \/\/ Get all posts by default.\n    $query_args = [\n        'posts_per_page' =&gt; -1,\n        'order'          =&gt; 'DESC',\n        'orderby'        =&gt; 'ID',\n        'meta_key'       =&gt; '_wp_attachment_metadata',\n        'post__not_in'   =&gt; array(1, 2),\n        'post_type'      =&gt; $post_type,\n        'post_status'    =&gt; 'publish'\n    ];\n\n    \/\/ Apply filters to the query arguments.\n    apply_filters('wp_get_latest_posts_query_args', $query_args);\n\n    \/\/ Query and return the results.\n    $latest_posts = $wpdb-&gt;get_results(\n        $wpdb-&gt;prepare(\n            \"SELECT *\n              FROM $wpdb-&gt;posts\n             WHERE $wpdb-&gt;posts.post_type = %s\n               AND $wpdb-&gt;posts.post_status = 'publish'\n               ORDER BY $wpdb-&gt;posts.date_posted DESC\",\n            $post_type\n        ),\n        ARRAY_A\n    );\n\n    return $latest_posts;\n}<\/code><\/pre>\n<h4>2. &#23450;&#20041;&#38382;&#39064;<\/h4>\n<p>&#25105;&#20204;&#38656;&#35201;&#20174;WordPress&#25991;&#31456;&#21015;&#34920;&#20013;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#65292;&#36825;&#21487;&#20197;&#36890;&#36807;&#20462;&#25913;<code>WP_Query<\/code>&#36807;&#28388;&#22120;&#26469;&#23454;&#29616;&#12290;<\/p>\n<pre><code class=\"language-php\">$latest_posts = wp_get_latest_posts();\n\/\/ &#20551;&#35774;&#25105;&#20204;&#24819;&#35201;&#33719;&#21462;&#25152;&#26377;&#30340;&#25991;&#31456;&#65292;&#36825;&#37324;&#21482;&#26159;&#25552;&#20379;&#19968;&#20010;&#20363;&#23376;\n$all_posts = wp_get_posts(array(\n    'numberposts' =&gt; -1,\n    'post_type' =&gt; 'all',\n));\n\nforeach ($all_posts as $post) {\n    foreach ($latest_posts as $latest) {\n        if ($latest['ID'] === $post['ID']) {\n            unset($all_posts[$i]);\n            break;\n        }\n    }\n}\n\necho '&lt;pre&gt;';\nprint_r($all_posts);\necho '&lt;\/pre&gt;';<\/code><\/pre>\n<h4>3. &#35299;&#20915;&#26041;&#26696;<\/h4>\n<ul>\n<li>&#20351;&#29992;<code>WP_Query<\/code>&#36807;&#28388;&#22120;&#32467;&#21512;&#33258;&#23450;&#20041;&#20989;&#25968;&#25110;&#23439;&#65292;&#26681;&#25454;&#38656;&#35201;&#36873;&#25321;&#21512;&#36866;&#30340;&#22788;&#29702;&#26041;&#24335;&#12290;<\/li>\n<li>\n<p>&#21487;&#20197;&#36890;&#36807;&#20197;&#19979;&#20960;&#31181;&#26041;&#24335;&#35299;&#20915;&#65306;<\/p>\n<ul>\n<li>\n<p><strong>&#20351;&#29992;<code>WP_Query<\/code>&#36807;&#28388;&#22120;<\/strong>&#65306;<\/p>\n<pre><code class=\"language-php\">$query_args = ['post_type' =&gt; 'your-post-type', 'orderby' =&gt; 'date', 'order' =&gt; 'desc'];\n$latest_posts = new WP_Query($query_args);\nwhile ($latest_posts-&gt;have_posts()) : $latest_posts-&gt;the_post(); ?&gt;\n&lt;div&gt;&lt;?php the_title(); ?&gt;&lt;\/div&gt;\n&lt;?php endwhile; ?&gt;<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>&#33258;&#23450;&#20041;&#20989;&#25968;<\/strong>&#65306;<\/p>\n<pre><code class=\"language-php\">\nfunction exclude_latest_posts() {\nglobal $wpdb;\n\n$query_args = [\n'post_type' =&gt; 'your-post-type',\n'orderby' =&gt; 'date',\n'order' =&gt; 'desc',\n];\n\n$query = new WP_Query($query_args);\n\nwhile ($query-&gt;have_posts()) {\n$query-&gt;the_post();\n\nif (is_single()) {\n  $latest_id = get_the_ID();\n\n  if (!empty($latest_id)) {\n    $exclude_ids[] = $latest_id;\n  }\n}\n}\n\nreturn $exclude_ids;\n}<\/code><\/pre>\n<\/li>\n<\/ul>\n<p>add_filter(&#8216;wp_get_recent_posts&#8217;, &#8216;exclude_latest_posts&#8217;);<\/p>\n<pre><code><\/code><\/pre>\n<\/li>\n<\/ul>\n<h4>4. &#31034;&#20363;&#20195;&#30721;<\/h4>\n<h3>&#31034;&#20363;&#20195;&#30721;<\/h3>\n<h4>&#33258;&#23450;&#20041;&#20989;&#25968;&#31034;&#20363;&#65288;WordPress 4.9-5.0&#65289;<\/h4>\n<pre><code class=\"language-php\">function exclude_last_posts($args) {\n    global $wpdb;\n\n    \/\/ &#33719;&#21462;&#24403;&#21069;&#26102;&#38388;&#25139;\n    $now = time();\n\n    \/\/ &#38450;&#27490;&#22312;&#31105;&#29992;&#26102;&#20986;&#29616;&#38169;&#35823;\n    if (!$wpdb-&gt;allow_no_rewrite) {\n        return $args;\n    }\n\n    $query_args = [];\n    $query_args['post_type'] = $args['post_type'];\n    $query_args['post_status'] = 'publish';\n    $query_args['meta_key'] = '_wp_attachment_metadata';\n    $query_args['meta_value'] = $now;\n    $query_args['orderby'] = 'date';\n\n    \/\/ &#26816;&#26597;&#26159;&#21542;&#26377;&#25351;&#23450;&#30340;&#26631;&#31614;\n    $exclude_tag = isset($_GET['exclude_tag']) ? $_GET['exclude_tag'] : '';\n    if (!empty($exclude_tag)) {\n        $query_args['post_tags'] = array_unique(array_merge(get_terms('post_tag'), explode(',', $exclude_tag)));\n    }\n\n    \/\/ &#36827;&#34892;&#31579;&#36873;\n    $query = new WP_Query($query_args);\n\n    \/\/ &#22914;&#26524;&#26377;&#32467;&#26524;&#65292;&#21017;&#26174;&#31034;\n    if ($query-&gt;have_posts()) {\n        while ($query-&gt;have_posts()) {\n            $query-&gt;the_post();\n\n            \/\/ &#22312;&#21333;&#20010;&#39029;&#38754;&#20013;&#21024;&#38500;&#26368;&#21518;&#19968;&#20010;&#24086;&#23376;\n            if (is_singular()) {\n                $id = get_the_ID();\n                if ($id &amp;&amp; !in_array($id, $exclude_ids)) {\n                    remove_meta_box('author', 'page', 'normal');\n                    remove_meta_box('edit-comments-link', 'page', 'normal');\n                    remove_meta_box('comments', 'page', 'normal');\n                    remove_post_meta($id, '_wp_attachment_metadata');\n                }\n            }\n        }\n    }\n\n    return $args;\n}\n\nadd_action('init', 'exclude_last_posts');\n\n\/\/ &#25191;&#34892;&#36807;&#28388;&#22120;&#20197;&#30830;&#20445;&#23427;&#27491;&#30830;&#24037;&#20316;\nremove_action('wp_head', 'wp_print_scripts');\nadd_filter('body_class', 'wp_custom_body_classes');<\/code><\/pre>\n<h4>WP_Query &#31034;&#20363;&#65288;WordPress 5.0+&#65289;<\/h4>\n<pre><code class=\"language-php\">function exclude_last_posts($query) {\n    if (isset($_GET['exclude_tag'])) {\n        $tag = $_GET['exclude_tag'];\n\n        \/\/ &#21019;&#24314;&#19968;&#20010;&#26032;&#30340;&#21442;&#25968;&#25968;&#32452;\n        $new_query_args = [];\n\n        \/\/ &#28155;&#21152;&#26032;&#30340;&#21442;&#25968;&#21040;&#21407;&#22987;&#21442;&#25968;&#25968;&#32452;\n        $new_query_args['post_type'] = $query-&gt;get('post_type');\n        $new_query_args['post_status'] = $query-&gt;get('post_status');\n        $new_query_args['orderby'] = $query-&gt;get('orderby');\n        $new_query_args['meta_key'] = $query-&gt;get('meta_key');\n        $new_query_args['meta_value'] = $query-&gt;get('meta_value');\n        $new_query_args['post_tags'] = $query-&gt;get('post_tags');\n        $new_query_args['post__not_in'] = $query-&gt;get('post__not_in');\n\n        \/\/ &#36816;&#34892;&#26032;&#26597;&#35810;\n        $new_query = new WP_Query($new_query_args);\n\n        \/\/ &#21024;&#38500;&#21305;&#37197;&#30340;&#24086;&#23376;\n        if ($new_query-&gt;have_posts()) {\n            while ($new_query-&gt;have_posts()) {\n                $new_query-&gt;the_post();\n\n                \/\/ &#22312;&#21333;&#20010;&#39029;&#38754;&#20013;&#21024;&#38500;&#26368;&#21518;&#19968;&#20010;&#24086;&#23376;\n                if (is_singular()) {\n                    $id = get_the_ID();\n                    if ($id &amp;&amp; !in_array($id, $exclude_ids)) {\n                        remove_meta_box('author', 'page', 'normal');\n                        remove_meta_box('edit-comments-link', 'page', 'normal');\n                        remove_meta_box('comments', 'page', 'normal');\n                        remove_post_meta($id, '_wp_attachment_metadata');\n                    }\n                }\n            }\n        }\n\n        \/\/ &#28165;&#29702;&#26087;&#25968;&#25454;\n        clear_postdata();\n        wp_reset_postdata();\n    }\n}\n\nadd_action('wp', 'exclude_last_posts');<\/code><\/pre>\n<p>&#20197;&#19978;&#23601;&#26159;&#20174;WordPress&#25991;&#31456;&#21015;&#34920;&#20013;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#30340;&#26041;&#27861;&#12290;&#36890;&#36807;&#20351;&#29992;<code>WP_Query<\/code>&#36807;&#28388;&#22120;&#32467;&#21512;&#33258;&#23450;&#20041;&#20989;&#25968;&#25110;&#23439;&#65292;&#21487;&#20197;&#26681;&#25454;&#20855;&#20307;&#38656;&#27714;&#28789;&#27963;&#22320;&#23454;&#29616;&#36825;&#19968;&#21151;&#33021;&#12290;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bug&#32534;&#35793;&#29422; &#35201;&#20174;WordPress&#25991;&#31456;&#24490;&#29615;&#20013;&#25490;&#38500;&#26368;&#26032;&#25991;&#31456;&#65292;&#20320;&#038;#2..<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[52,53],"tuisongtax":[],"class_list":["post-1973","post","type-post","status-publish","format-standard","hentry","category-wpdt","tag-ztjc","tag-ztmbpzjc"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts\/1973","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/comments?post=1973"}],"version-history":[{"count":0,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/posts\/1973\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/media?parent=1973"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/categories?post=1973"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tags?post=1973"},{"taxonomy":"tuisongtax","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tuisongtax?post=1973"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}