在Wordpress中显示自定义分类法后计数

时间:2013-09-26 08:46:29

标签: php wordpress

我在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 );

   }

请帮助我如何展示这些?

由于

0 个答案:

没有答案