如何在wordpress中的类别名称旁边显示帖子编号

时间:2015-05-15 18:14:03

标签: php wordpress

我有一个类别列表显示在我的一个WordPress页面中。目前它显示所有带链接的类别名称。我也要显示帖子号码。意味着如果A类有10个帖子,它就会显示在其名称旁边。

这是我目前的片段:

 <ul class="cat-list">
    <?php
    $args=array(
      'orderby' => 'name',
      'order' => 'ASC'
    )
    ?>
    <?php 
    foreach (get_categories( $args ) as $cat) : ?>
    <li>
        <div class="post-title">
            <h5><a href="<?php echo get_category_link($cat->term_id); ?>"><i class="fa fa-arrow-circle-right"></i> <?php echo $cat->cat_name; ?></a></h5>
        </div>
    </li>
    <?php endforeach; ?>
</ul>

这是我想要做的: enter image description here

1 个答案:

答案 0 :(得分:2)

在循环获取'category_count'时尝试这样的事情

<?php 
  $cat = get_the_category(); 
  $cat = $cat[0];?>
  echo $cat->category_count;
?>

此链接可能会对您有所帮助 https://wordpress.org/support/topic/display-the-posts-count-in-the-selected-category