gpt4 book ai didi

WordPress:在WHILE循环中获取current_post索引号

转载 作者:行者123 更新时间:2023-12-03 06:36:27 24 4
gpt4 key购买 nike

如何在 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;

非常感谢任何建议!

最佳答案

你应该使用

$index_query->current_post;

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

关于WordPress:在WHILE循环中获取current_post索引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12412552/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com