我正在尝试将特定分类的条款显示在页面上。代码位于页面模板中,当我使用'get_the_terms'时,显示的结果是'array'。有人可以解释一下吗?
答案 0 :(得分:2)
这是正确的。正如get_the_terms()的codex页面中所报告的那样,返回一系列术语。 然后,您可以在代码中使用该数组。
待办事项
<?php
$terms = get_the_terms();
print_r($terms)
?>
发现术语的结构。
此示例打印出函数检索的术语的名称。
foreach ( $terms as $term ) {
echo $term->name
}
答案 1 :(得分:0)
稍微偏离主题,但就在昨天,我在wordpress.stackexchange.com上回答了question related to this。它揭示了“获取与帖子相关的分类/术语”这一主题的一些有趣的变化。