当我点击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
或其他什么吗?
答案 0 :(得分:0)
要获取类别页面下的总帖子,请将给定代码放在类别页面的循环中。
echo $item_query->found_posts;