如何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;
任何建议都非常感谢!