index number
WILEループ内で現在の投稿を取得するには?
$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;
どんな提案でも大歓迎です!