【发布时间】:2016-08-05 13:19:12
【问题描述】:
我正在尝试获取自定义帖子类型的所有类别。我正在使用get_the_category(); 函数来检索类别。但是如果我有 3 个帖子和 1 个类别,则该类别重复 3 次:o。
我的代码是
<?php
query_posts( array( 'post_type' => 'member', 'showposts' => 8 ) );
if ( have_posts() ) : while ( have_posts() ) : the_post();
$categories = get_the_category();
foreach ( $categories as $category ) {
echo $category->name, ' ';
}
?>
<?php endwhile; endif; wp_reset_query(); ?>
有什么解决办法吗??
【问题讨论】:
-
您正在尝试获取类别,但您的代码显示您获取的是帖子,而不是类别。
-
您的自定义帖子类型分类名称是什么?
标签: php wordpress categories custom-post-type