WordPress企业主题定制/开发/优化

wp_get_object_terms 显示当前文章分类列表

首页 » WORDPRESS主题技术 » wp_get_object_terms 显示当前文章分类列表

wp_get_object_terms 显示当前文章分类列表

<?php
$product_terms = wp_get_object_terms( $post->ID, 'portfolio_category' );
if ( ! empty( $product_terms ) ) {
if ( ! is_wp_error( $product_terms ) ) {

foreach( $product_terms as $term ) {

echo '<a href="' . get_term_link( $term->slug, 'portfolio_category' ) . '">' . esc_html( $term->name ) . '</a>';
if($term != end($product_terms)) {echo ", ";}
}

}
}?>

分类与标签:

WORDPRESS主题技术

相关项目

  • WordPress外贸企业主题

  • 最近更新

  • 热门标签