반응형
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
반응형
'programing' 카테고리의 다른 글
WordPress를 사용한 PHP if/else get_field() (0) | 2023.02.25 |
---|---|
AJAX 요구에 의한 쿠키 송신 방지 (0) | 2023.02.25 |
반응 JS 오류: 정의되지 않은 반응/jsx-no-def (0) | 2023.02.20 |
SQL에서 값 목록을 테이블 행과 결합 (0) | 2023.02.20 |
통합 테스트에서 MockMvc와 RestTemplate의 차이점 (0) | 2023.02.20 |