18

如何index number在 WHILE 循环中获取当前帖子?

$index_query = new WP_Query( array( 'post_type' => 'post', 'orderby' => 'modified', 'posts_per_page' => '-1', 'order' => 'DESC' ) );
while ( $index_query->have_posts() ) : $index_query->the_post();

    // echo current post index number

endwhile;

尝试了以下方法,但没有结果。

$index_query->post->current_post;

任何建议都非常感谢!

4

2 回答 2

23

你应该使用

$index_query->current_post;

http://codex.wordpress.org/Class_Reference/WP_Query#Properties

于 2012-09-13T18:56:34.417 回答
6

我可以通过使用此代码

$wp_query->current_post
于 2018-09-21T05:20:35.900 回答