类别中的相对职位数

时间:2012-02-01 作者:Ben

对于y类中的立柱x,如何实现以下输出:

  • Post x是n第个,共个m y类帖子。
其中m 是该类别中的职位总数,以及n 是当前帖子的编号(按发布日期排序)。

1 个回复
SO网友:Shane

您是使用主查询还是自定义WP\\U查询来显示帖子?

如果是:

 $wp_query->found_posts; //Main query
 $wp_query->current_post; // current post index

 $my_wp_query->found_posts; //custom wp_query object - total found posts
 $my_wp_query->current_post; // current post index

So, example

 if( have_posts() ) : while( have_posts() ) : the_post();
 ?>
      <p>The post <?php the_title(); ?> is <?php echo $wp_query->current_post; ?>th of <?php echo $wp_query->found_posts; ?> in category <?php echo \'your cat here\'; ?></p>

 <?php endwhile; endif; ?>

结束

相关推荐

Only show authors with posts

我以为下面的代码可以用。。。但没有骰子。类似于“AND post\\u count>0”函数贡献者(){全局$wpdb;$authors = $wpdb->get_results(\"SELECT ID, user_nicename from $wpdb->users WHERE display_name <> \'admin\' AND post_count > 0 ORDER BY display_name\"); foreach ($author