获取自定义帖子类型的分类术语

时间:2015-04-13 20:09:21

标签: php wordpress

尝试获得自定义"类别"在wordpress中自定义帖子类型。没有运气。经过一大堆答案,但都没有。

这是我尝试过的最新内容

<?php   // Get terms for post
 $terms = get_the_terms( $post->ID , 'quizes' );
 if ( $terms != null ){
 foreach( $terms as $term ) {
 print $term->slug ;
 unset($term);
} } ?>

0 个答案:

没有答案
相关问题