使用get\\u the\\u terms在自定义帖子类型的分类法中检索术语时,不能传递参数,如下所示:
function custom_cat_function() {
global $post;
$args = array(
\'orderby\' => \'ID\',
\'order\' => \'ASC\',
);
$terms = get_the_terms($post->id, \'category\', $args);
$count = count( $terms );
if ( $count > 0 ) {
foreach ( $terms as $term ) {
echo \'<li>\' . $term->name . \'</li>\';
}
}
}
所有文档都指向其他函数,如get\\u terms,但get\\u terms检索分类法中的所有术语,而不仅仅是单个帖子(在循环中)的术语。
如何像上面的例子那样正确地传递参数(我知道上面的例子是不对的,但我将其作为需要实现的基本示例编写)