Wordpress:用户组打印两次

时间:2016-09-07 06:24:12

标签: php wordpress

我有以下代码打印两次用户组。提前谢谢。

<?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. ' ';
        }
?>

1 个答案:

答案 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;我在你的代码中看到了。