wordpress根据指定tag标签获取文章的数量

2024年10月20日 建站教程

wordpress根据指定tag标签获取文章的数量,下面web建站小编给大家简单介绍一下实现代码!

根据标签id获取文章总数

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;
}

//调用方法
<?php echo get_tag_post_count_by_id( $tag_id ) ?>

根据标签别名获取文章总数

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;
}

//调用方法
<?php echo get_tag_post_count_by_id( $tag_slug ) ?>

本文链接:http://so.lmcjl.com/news/15794/

展开阅读全文
相关内容