我已经创建了一个自定义插件页面。在此页面上,我使用wp_query(). 它工作得很好。我想添加分页,但它不起作用,即使我使用中提供的代码codex:
<?php
// set the "paged" parameter
$paged = ( get_query_var( \'paged\' ) ) ? get_query_var( \'paged\' ) : 1;
// the query
$the_query = new WP_Query( \'posts_per_page=2&paged=\' . $paged );
if ( $the_query->have_posts() ) :
// the loop
while ( $the_query->have_posts() ) : $the_query->the_post();
the_title();
endwhile;
// next_posts_link() usage with max_num_pages
next_posts_link( \'Older Entries\', $the_query->max_num_pages );
previous_posts_link( \'Newer Entries\' );
// clean up after the query and pagination
wp_reset_postdata();
else:
echo \'Sorry, no posts matched your criteria.\';
endif; ?>
单击分页链接时,它会加载具有相同帖子的新页面。为什么在wp-admin area?