Wordpress编号类别中的帖子

时间:2017-07-09 22:57:37

标签: php wordpress

当我点击Wordpress上的类别页面时,它会列出该类别中的所有帖子。我想做的就是以某种方式为他们编号。

以下是content.php

中的代码
h2 class="entry-title">
    <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>

<div class="entry-content">
   <?php the_content(); ?>
</div>

那么我需要做loop或其他什么吗?

1 个答案:

答案 0 :(得分:0)

要获取类别页面下的总帖子,请将给定代码放在类别页面的循环中。

 echo $item_query->found_posts;