显示单个帖子的自定义帖子类别

时间:2017-07-20 作者:Sam

我试着找一篇能帮上忙但走不远的文章,我有一个自定义帖子;

<?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; ?>
但没有成功。。。

有人能帮忙吗?

提前感谢

1 个回复
SO网友:Sam

<?php $terms = get_the_terms( $post->ID , \'swatches-category\' ); foreach ( $terms as $term ) {  echo $term->name; } ?>
解决了它!:-)

结束

相关推荐

WooCommerce Get_Author_Posts_url()-作者URL重定向到商店基地

我注意到,当我启用WooCommerce并使用get_author_posts_url() 当用户的角色为Customer.当我将用户更改为Subscriber get_author_posts_url() 工作正常。我已经禁用了所有插件,以系统地确定问题的原因,并可以确认只有在启用WooCommerce时才会出现问题。我还刷新了重写。我甚至试过使用$user->add_role( \'subscriber\' ) 到用户的容量数组。有人知道为什么会发生这种事吗?我怎样才能抑制它?(即不重定向get