{"id":57,"date":"2025-03-05T13:23:08","date_gmt":"2025-03-05T05:23:08","guid":{"rendered":"https:\/\/www.zhaozhao123.cn\/wpcms\/57.html"},"modified":"2025-12-11T09:42:04","modified_gmt":"2025-12-11T01:42:04","slug":"%e8%8e%b7%e5%8f%96%e6%9f%90%e7%af%87%e6%96%87%e7%ab%a0%e5%9c%a8%e7%89%b9%e5%ae%9a%e5%88%86%e7%b1%bb%e6%b3%95%ef%bc%88taxonomy%ef%bc%89%e4%b8%8b%e7%9a%84%e5%88%86%e7%b1%bb%ef%bc%88term%ef%bc%89","status":"publish","type":"bjjc","link":"https:\/\/www.zhaozhao123.cn\/wpcms\/bjjc\/57.html","title":{"rendered":"WordPress\u83b7\u53d6\u67d0\u7bc7\u6587\u7ae0\u5728\u7279\u5b9a\u5206\u7c7b\u6cd5\uff08taxonomy\uff09\u4e0b\u7684\u5206\u7c7b\uff08term\uff09"},"content":{"rendered":"<p>\u5728WordPress\u4e2d\uff0c\u5982\u679c\u4f60\u60f3\u83b7\u53d6\u67d0\u7bc7\u6587\u7ae0\u5728\u7279\u5b9a\u5206\u7c7b\u6cd5\uff08taxonomy\uff09\u4e0b\u7684\u5206\u7c7b\uff08term\uff09\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u65b9\u6cd5\uff1a<\/p><h3 class=\"wp-block-heading\">\u65b9\u6cd5\u4e00\uff1a\u4f7f\u7528 <code>wp_get_post_terms()<\/code> \u51fd\u6570<\/h3><p><code>wp_get_post_terms()<\/code> \u662f WordPress \u63d0\u4f9b\u7684\u4e00\u4e2a\u51fd\u6570\uff0c\u7528\u4e8e\u83b7\u53d6\u6587\u7ae0\u5728\u6307\u5b9a\u5206\u7c7b\u6cd5\u4e0b\u7684\u5206\u7c7b\u3002<\/p><pre class=\"wp-block-code\"><code>$post_id = get_the_ID(); \/\/ \u83b7\u53d6\u5f53\u524d\u6587\u7ae0\u7684ID\n$taxonomy = 'tax'; \/\/ \u5206\u7c7b\u6cd5\u540d\u79f0\n$terms = wp_get_post_terms($post_id, $taxonomy);\n\nif (!is_wp_error($terms) &amp;&amp; !empty($terms)) {\n    foreach ($terms as $term) {\n        echo $term-&gt;name; \/\/ \u8f93\u51fa\u5206\u7c7b\u540d\u79f0\n    }\n} else {\n    echo '\u6ca1\u6709\u627e\u5230\u5206\u7c7b';\n}<\/code><\/pre><h3 class=\"wp-block-heading\">\u65b9\u6cd5\u4e8c\uff1a\u4f7f\u7528 <code>get_the_terms()<\/code> \u51fd\u6570<\/h3><p><code>get_the_terms()<\/code> \u662f\u53e6\u4e00\u4e2a\u5e38\u7528\u7684\u51fd\u6570\uff0c\u7528\u4e8e\u83b7\u53d6\u6587\u7ae0\u5728\u6307\u5b9a\u5206\u7c7b\u6cd5\u4e0b\u7684\u5206\u7c7b\u3002<\/p><pre class=\"wp-block-code\"><code>$post_id = get_the_ID(); \/\/ \u83b7\u53d6\u5f53\u524d\u6587\u7ae0\u7684ID\n$taxonomy = 'tax'; \/\/ \u5206\u7c7b\u6cd5\u540d\u79f0\n$terms = get_the_terms($post_id, $taxonomy);\n\nif (!is_wp_error($terms) &amp;&amp; !empty($terms)) {\n    foreach ($terms as $term) {\n        echo $term-&gt;name; \/\/ \u8f93\u51fa\u5206\u7c7b\u540d\u79f0\n    }\n} else {\n    echo '\u6ca1\u6709\u627e\u5230\u5206\u7c7b';\n}<\/code><\/pre><h3 class=\"wp-block-heading\">\u65b9\u6cd5\u4e09\uff1a\u4f7f\u7528 <code>get_terms()<\/code> \u51fd\u6570<\/h3><p>\u5982\u679c\u4f60\u77e5\u9053\u6587\u7ae0ID\u548c\u5206\u7c7b\u6cd5\u540d\u79f0\uff0c\u4e5f\u53ef\u4ee5\u4f7f\u7528 <code>get_terms()<\/code> \u51fd\u6570\u6765\u83b7\u53d6\u5206\u7c7b\u3002<\/p><pre class=\"wp-block-code\"><code>$post_id = get_the_ID(); \/\/ \u83b7\u53d6\u5f53\u524d\u6587\u7ae0\u7684ID\n$taxonomy = 'tax'; \/\/ \u5206\u7c7b\u6cd5\u540d\u79f0\n$terms = get_terms(array(\n    'taxonomy' =&gt; $taxonomy,\n    'object_ids' =&gt; $post_id,\n));\n\nif (!is_wp_error($terms) &amp;&amp; !empty($terms)) {\n    foreach ($terms as $term) {\n        echo $term-&gt;name; \/\/ \u8f93\u51fa\u5206\u7c7b\u540d\u79f0\n    }\n} else {\n    echo '\u6ca1\u6709\u627e\u5230\u5206\u7c7b';\n}<\/code><\/pre><h3 class=\"wp-block-heading\">\u65b9\u6cd5\u56db\uff1a\u4f7f\u7528 <code>get_the_term_list()<\/code> \u51fd\u6570<\/h3><p>\u5982\u679c\u4f60\u60f3\u76f4\u63a5\u8f93\u51fa\u5206\u7c7b\u7684\u94fe\u63a5\uff0c\u53ef\u4ee5\u4f7f\u7528 <code>get_the_term_list()<\/code> \u51fd\u6570\u3002<\/p><pre class=\"wp-block-code\"><code>$post_id = get_the_ID(); \/\/ \u83b7\u53d6\u5f53\u524d\u6587\u7ae0\u7684ID\n$taxonomy = 'tax'; \/\/ \u5206\u7c7b\u6cd5\u540d\u79f0\n$term_list = get_the_term_list($post_id, $taxonomy, '', ', ', '');\n\nif (!is_wp_error($term_list) &amp;&amp; !empty($term_list)) {\n    echo $term_list; \/\/ \u8f93\u51fa\u5206\u7c7b\u94fe\u63a5\n} else {\n    echo '\u6ca1\u6709\u627e\u5230\u5206\u7c7b';\n}<\/code><\/pre><h3 class=\"wp-block-heading\">\u603b\u7ed3<\/h3><ul class=\"wp-block-list\">\n<li><code>wp_get_post_terms()<\/code> \u548c <code>get_the_terms()<\/code> \u662f\u6700\u5e38\u7528\u7684\u65b9\u6cd5\uff0c\u9002\u5408\u83b7\u53d6\u6587\u7ae0\u7684\u5206\u7c7b\u4fe1\u606f\u3002<\/li>\n\n\n\n<li><code>get_terms()<\/code> \u9002\u5408\u5728\u9700\u8981\u66f4\u590d\u6742\u7684\u67e5\u8be2\u65f6\u4f7f\u7528\u3002<\/li>\n\n\n\n<li><code>get_the_term_list()<\/code> \u9002\u5408\u76f4\u63a5\u8f93\u51fa\u5206\u7c7b\u94fe\u63a5\u3002<\/li>\n<\/ul><p>\u6839\u636e\u4f60\u7684\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\u5373\u53ef\u3002<\/p>","protected":false},"excerpt":{"rendered":"<p>\u5728WordPress\u4e2d\uff0c\u5982\u679c\u4f60\u60f3\u83b7\u53d6\u67d0\u7bc7\u6587\u7ae0\u5728\u7279\u5b9a\u5206\u7c7b\u6cd5\uff08taxonomy\uff09\u4e0b\u7684\u5206\u7c7b\uff08term\uff09\uff0c\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u65b9\u6cd5\uff1a \u65b9\u6cd5\u4e00\uff1a\u4f7f\u7528 wp_get_post_terms() \u51fd\u6570 wp_get_post_terms() \u662f WordPress \u63d0\u4f9b\u7684\u4e00\u4e2a\u51fd\u6570\uff0c\u7528\u4e8e\u83b7\u53d6\u6587\u7ae0\u5728\u6307\u5b9a\u5206\u7c7b\u6cd5\u4e0b\u7684\u5206\u7c7b\u3002 \u65b9\u6cd5\u4e8c\uff1a\u4f7f\u7528 get_th..<\/p>\n","protected":false},"author":1,"featured_media":0,"menu_order":0,"template":"","meta":{"_acf_changed":false},"tags":[],"bjjc2nav":[14],"tuisongtax":[],"class_list":["post-57","bjjc","type-bjjc","status-publish","hentry","bjjc2nav-jdztkf"],"acf":{"qian_art_seotitle":"","qian_art_seotitle_source":{"label":"SEO\u6807\u9898","type":"text","formatted_value":""},"qian_art_seokws":"","qian_art_seokws_source":{"label":"SEO\u5173\u952e\u8bcd","type":"text","formatted_value":""},"qian_art_stzhong":"","qian_art_stzhong_source":{"label":"\u4e2d | \u77ed\u6807\u9898","type":"text","formatted_value":""}},"_links":{"self":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/bjjc\/57","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/bjjc"}],"about":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/types\/bjjc"}],"author":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/users\/1"}],"wp:attachment":[{"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/media?parent=57"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tags?post=57"},{"taxonomy":"bjjc2nav","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/bjjc2nav?post=57"},{"taxonomy":"tuisongtax","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/wpcms\/wp-json\/wp\/v2\/tuisongtax?post=57"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}