programing

Wordpress: WHY 루프에서 current_post 인덱스 번호를 가져옵니다.

lastmemo 2023. 2. 25. 19:41
반응형

Wordpress: WHY 루프에서 current_post 인덱스 번호를 가져옵니다.

최신 투고를 받는 방법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;

제안해 주셔서 감사합니다!

를 사용해 주세요.

$index_query->current_post;

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

이 코드를 사용하면 얻을 수 있습니다.

$wp_query->current_post

언급URL : https://stackoverflow.com/questions/12412552/wordpress-get-current-post-index-number-in-while-loop

반응형