admin管理员组文章数量:1419238
I'm using HTML5Blank theme to edit my own theme on clean basis, and trying to set the pagination but it's not displaying for some reason, and I cant find out why.
Index.php calls loop then pagination templates
<section>
<?php get_template_part('loop'); ?>
<?php get_template_part('pagination'); ?>
</section>
Pagination.php calls pagination function
<div class="pagination">
<?php html5wp_pagination(); ?>
</div>
The function is
// Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin
function html5wp_pagination()
{
global $wp_query;
$big = 999999999;
echo paginate_links(array(
'base' => str_replace($big, '%#%', get_pagenum_link($big)),
'format' => '?paged=%#%',
'current' => max(1, get_query_var('paged')),
'total' => $wp_query->max_num_pages
));
}
I haven't touched anything related to the pagination, and I can see that the <div class="pagination">
is called in the HTML using Chrome console, but is not displaying anything.
I thought this could be because I had not enough post to display the pagination, but I tried to add a lot of posts, and it's still not showing.
Any idea of what is the problem ?
I'm using HTML5Blank theme to edit my own theme on clean basis, and trying to set the pagination but it's not displaying for some reason, and I cant find out why.
Index.php calls loop then pagination templates
<section>
<?php get_template_part('loop'); ?>
<?php get_template_part('pagination'); ?>
</section>
Pagination.php calls pagination function
<div class="pagination">
<?php html5wp_pagination(); ?>
</div>
The function is
// Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin
function html5wp_pagination()
{
global $wp_query;
$big = 999999999;
echo paginate_links(array(
'base' => str_replace($big, '%#%', get_pagenum_link($big)),
'format' => '?paged=%#%',
'current' => max(1, get_query_var('paged')),
'total' => $wp_query->max_num_pages
));
}
I haven't touched anything related to the pagination, and I can see that the <div class="pagination">
is called in the HTML using Chrome console, but is not displaying anything.
I thought this could be because I had not enough post to display the pagination, but I tried to add a lot of posts, and it's still not showing.
Any idea of what is the problem ?
Share Improve this question asked Nov 10, 2015 at 11:30 jakzyjakzy 1 2 |1 Answer
Reset to default -1You need to add your query variable to the global used on the function, in that case "$wp_query", just like that:
<?php
$yourQuery_args = ['posts_per_page' => '7',];
$yourQuery = new WP_Query( $yourQuery_args );
$wp_query = $yourQuery;
get_template_part('pagination');
?>
本文标签: phpPagination not displaying
版权声明:本文标题:php - Pagination not displaying 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745300903a2652364.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
echo $wp_query->max_num_pages;
in your template and check what it returns – Pieter Goosen Commented Nov 10, 2015 at 12:07