只需要两步就可以实现根据wordpress指定ID标签获取该tag下的文章数量

第一步:把下面的代码放到functions.php文件中

//Put the following code into the functions.php file wodepress.com
function get_tag_post_count_by_id( $tag_id ) {
 $tag = get_term_by( 'id', $tag_id, 'post_tag' );
 _make_cat_compat( $tag );
 return $tag->count;
}

第二步:在需要的位置调用以下的代码

//Call the following code at the desired location wodepress.com
<?php echo get_tag_post_count_by_id( $tag_id ) ?>