カスタムWP_Query内でnext_posts_link()を機能させる方法がわかりません。これが関数です:
function artists() {
echo '<div id="artists">';
$args = array( 'post_type' => 'artist', 'posts_per_page' => 3, 'paged' => get_query_var( 'page' ));
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
echo '<a class="artist" href="'.get_post_permalink().'">';
echo '<h3 class="artist-name">'.get_the_title().'</h3>';
$attachments = attachments_get_attachments();
$total_attachments = count( $attachments );
for( $i=0; $i<$total_attachments; $i++ ) {
$thumb = wp_get_attachment_image_src( $attachments[$i]['id'], 'thumbnail' );
echo '<span class="thumb"><img src="'.$thumb[0].'" /></span>';
}
echo '</a>';
endwhile;
echo '</div>';
next_posts_link();
}
誰かが私が間違っていることを私に言うことができますか?
ありがとう
max_num_pagesを関数に渡してみてください。
next_posts_link('Older Entries »', $loop->max_num_pages);
next_posts_link
とprevious_posts_link
、そして他のいくつかの関数は、$wp_query
と呼ばれるグローバル変数を利用します。この変数は、実際にはWP_Queryオブジェクトのインスタンスです。ただし、WP_Queryの独自のインスタンス化を作成するときには、このグローバル変数$wp_query
がないため、ページングは機能しません。
$wp_query
globalをトリックするのを修正する
//save old query
$temp = $wp_query;
//clear $wp_query;
$wp_query= null;
//create a new instance
$wp_query = new WP_Query();
$args = array( 'post_type' => 'artist', 'posts_per_page' => 3, 'paged' => get_query_var( 'page' ));
$wp_query->query($args);
while ( $wp_query->have_posts() ) : $wp_query->the_post();
echo '<a class="artist" href="'.get_post_permalink().'">';
echo '<h3 class="artist-name">'.get_the_title().'</h3>';
$attachments = attachments_get_attachments();
$total_attachments = count( $attachments );
for( $i=0; $i<$total_attachments; $i++ ) {
$thumb = wp_get_attachment_image_src( $attachments[$i]['id'], 'thumbnail' );
echo '<span class="thumb"><img src="'.$thumb[0].'" /></span>';
}
echo '</a>';
endwhile;
echo '</div>';
next_posts_link();
//clear again
$wp_query = null;
//reset
$wp_query = $temp;