因此,我有一个自定义查询,在其中显示一些自定义帖子类型的结果帖子,称为“staff”。此自定义帖子类型链接到名为“department”的自定义分类法。我可以显示结果,但无法打印链接到每个帖子的类别。
这是我的代码:
<?php
$args = array(
\'post_type\' => \'staff\', \'posts_per_page\' => -1, \'orderby\' => \'menu_order\', \'order\' => \'ASC\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'departments\',
\'field\' => \'slug\',
\'terms\' => \'board\'
)
)
);
$loop = new WP_Query( $args );
?>
<?php if( $loop->have_posts() ): ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<p class="text-center name"><?php the_title(); ?></p>
<?php the_category(\' \'); ?>
<?php endwhile; ?>
<?php endif; ?>
我想问题是我正在使用,但我不确定。
有什么想法吗?有什么问题吗?
谢谢