我试着找一篇能帮上忙但走不远的文章,我有一个自定义帖子;
<?php
$args = array(
\'post_type\' => \'swatches\',
\'posts_per_page\' => 9999,
\'order\' => \'ASC\',
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
?>
我想输出标题(easy)和与之相关的自定义帖子类别,例如我添加的豪华、标准等;
\'taxonomies\' => array(\'swatches-category\',\'swatches-tags\')
在我的函数中,可以让它显示所有类别,但不能显示它所涉及的类别。
我正在努力;
<?php $terms = get_terms(\'swatches-category\'); echo $term->name; ?>
但没有成功。。。
有人能帮忙吗?
提前感谢