玩转functions.php就可以让你的Wordpress模板制作得心应手,根据Wordpress标签别名获取该tag相关的文章总数,用下面的方法就可以轻松实现。
第一步:把下面的代码放到functions.php文件中
//Obtain the total number of articles based on tag aliases wodepress.com
function get_tag_post_count_by_slug( $tag_slug ) {
$tag = get_term_by( 'slug', $tag_slug, 'post_tag' );
_make_cat_compat( $tag );
return $tag->count;
}
第二步:在需要显示的地方放下面的代码
//Place the following code where it needs to be displayed wodepress.com
<?php echo get_tag_post_count_by_id( $tag_slug ) ?>