我需要为当前的自定义动态后单页(例如面包屑)我使用get_the_terms($post-〉ID,'Curr_post_tax')或者如何获取当前自定义过帐的Curr_post_tax或者你知道其他的方法首页〉产品目录〉术语〉CurrProd
vatpfxk51#
get_the_terms()函数返回指定分类的术语的数组。如果你只想要数组的第一个项,那么:
$terms = get_the_terms( get_the_ID(), 'YOUR-TAXONOMY' ); if ( $terms && ! is_wp_error( $terms ) ) : echo $terms[0]; endif;
1条答案
按热度按时间vatpfxk51#
get_the_terms()函数返回指定分类的术语的数组。如果你只想要数组的第一个项,那么: