WordPress the_terms() 函数获取自定义文章类型分类

一般我们获取文章分类用

<?php the_category(‘, ‘); ?>

不过该函数是系统自带文章分类的获取,如果我们主题使用了自定义文章类型,用该函数就获取不到相应分类了。

如何解决?那就是使用 the_terms() 函数:

<?php the_terms( $id, $taxonomy, $before, $sep, $after ); ?>

使用如下:

<?php the_terms( $post->ID, ‘book-category’, ”, ‘, ‘ ); ?>

官方文档:Function Reference/the terms

相关文章