我在 wordpress 中创建了具有自定义分类的自定义帖子。我还创建了 html 链接,我想在它旁边显示与 html 相关的自定义帖子计数。
我已将函数 php 中的列表类别定义为:
define( 'VA_LISTING_CATEGORY', 'listing_category' );
并具有列表类别功能:
function the_listing_categories( $listing_id = 0 ) {
$listing_id = $listing_id ? $listing_id : get_the_ID();
$cats = get_the_listing_categories( $listing_id );
if ( !$cats ) return;
$_cats = array();
foreach($cats as $cat) {
$_cats[] = html_link( get_term_link( $cat ), $cat->name );
}
$cats_list = implode( ', ', $_cats);
printf( __( 'Listed in %s', APP_TD ), $cats_list );
}
请帮助我如何显示这些?
谢谢