我在wordpress自定义页面中有分页问题。我使用模板炫目,这是分页功能:https://github.com/puikinsh/Dazzling/blob/master/inc/template-tags.php 但总是$ GLOBALS ['wp_query'] - > max_num_pages为0(null)。我尝试了很多时间来改变它,这就是我现在所做的:
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
$query_args = array(
'post_type' => 'post',
'category__in' => '4',
'posts_per_page' => 3,
'max_num_pages' => 5,
'paged' => $paged
);
// create a new instance of WP_Query
$the_query = new WP_Query( $query_args );
?>
<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // run the loop ?>
<article>
<h1><?php echo the_title(); ?></h1>
<div class="excerpt">
<?php the_excerpt(); ?>
</div>
</article>
<?php endwhile; ?>
<?php if ($the_query->max_num_pages > 1) { // check if the max number of pages is greater than 1 ?>
<?php dazzling_paging_nav()); ?>
<?php } ?>
<?php else: ?>
<article>
<h1>Sorry...</h1>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
</article>
<?php endif; ?>
我做错了什么?有什么想法吗?
答案 0 :(得分:5)
global $wp_query;
global $page, $numpages, $multipage, $more;
if( is_singular() ) {
$page_key = 'page';
$paged = $page;
$max = $numpages;
} else {
$page_key = 'paged';
$paged = get_query_var( 'paged' ) ? absint( get_query_var( 'paged' ) ) : 1;
$max = $wp_query->max_num_pages;
}
答案 1 :(得分:2)
同样的问题,其中max_num_pages在页面模板中不起作用,但可以在归档模板中使用。对我来说解决方案有点像PHP:
将其舍入到最大值
$published_posts = wp_count_posts()->publish;
$posts_per_page = get_option('posts_per_page');
$page_number_max = ceil($published_posts / $posts_per_page);
答案 2 :(得分:1)
不太确定它可以帮助别人,但以防万一。我遇到了同样的问题($ wp_query-&gt; max_pages_number返回0),因为一些非常愚蠢的事情而陷入困境。
我意识到我在我的主题中的其他地方有这个代码:
function no_rows_found_function($query)
{
$query->set('no_found_rows', true);
}
add_action('pre_get_posts', 'no_rows_found_function');
提高WP_Query的性能很有用,但no_found_rows禁用了分页。确保它不在插件或主题中的某个地方:)