我有以下代码打印两次用户组。提前谢谢。
<?php
$terms = array();
$terms_tags = get_the_terms( $current_user->ID, array( 'user-group' ) );
foreach ( $terms_tags as $term_tag ) {
$terms[$term_tag->slug] = $term_tag->name;
echo $term_tag->slug. ' ';
}
?>
答案 0 :(得分:2)
WordPress docs表示get_the_terms()
的第二个参数应该是字符串,而不是数组。你能检查一下吗?
试试这样:
<?php
$terms = array();
$terms_tags = get_the_terms( $current_user->ID, 'user-group' );
foreach ( $terms_tags as $term_tag ) {
$terms[$term_tag->slug] = $term_tag->name;
echo $term_tag->slug. ' ';
}
?>
到目前为止,这是唯一的问题&#34;我在你的代码中看到了。