WordPress: get current_post index number in WHILE loop

How to get current post index number inside WHILE loop?

$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;

Have tried with the following, but no result.

Read More
$index_query->post->current_post;

Any suggestions much appreciated!

Related posts

Leave a Reply

2 comments