답변:
이 WP_Query
개체에는 몇 페이지의 게시물이 포함 된 max_num_pages
필드 가 있습니다. 현재 페이지 번호를 비교할 수 있습니다. (이다 방법 get_next_posts_link()
을 수행합니다 .)
global $wp_query;
$current_page = $wp_query->get( 'paged' );
if ( ! $current_page ) {
$current_page = 1;
}
if ( $current_page == $wp_query->max_num_pages ) {
// You are on the last page
}
<?php if ( $wp_query->max_num_pages == get_query_var('paged') ) : ?> <div>TEXT</div><?php endif; ?>