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();
We tried with the following, but there was no result.
$index_query->post->current_post;
Any suggestions that were highly appreciated!
source share