你可以在一个循环中尝试一下
<?php
echo $wp_query->found_posts - $wp_query->current_post ;
?>
$wp_query->found_posts
给出
total number of posts found matching the current query parameters.
因此,如果有20个帖子,每个帖子的结果应该如下所示
对于第1个post,将显示20
, i、 e.20-0=20
对于第二个post,它将显示19
, i、 e.20-1=19
对于第12个帖子,它将显示9
, i、 e.20-11=9,对于第20个帖子,它将显示1
, i、 e.20-19=1,