我已经在SE网络和WP论坛以及几个日志中读过几个答案。但我还是在黑暗中。 首先,我不得不说,我的后果是不同的。
Blog
(blog.php)并在该页面上添加了一个wp_query,以显示该帖子中的正常博客帖子,因为我的主页是一个静态主页。elsewhile
<?php wp_pagenavi( array( 'query' => $the_query ) ); ?>
。/blog/page/2
那么,如何使页面导航工作? 我的片段
<?php $the_query = new WP_Query( 'showposts=8' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<div class="content-box bg-wrap"><?php
if ( has_post_thumbnail() ) { ?>
<div class="img"><a href="<?php the_permalink(); ?>">
<?php
the_post_thumbnail( 'blog_thumb' );
?>
</a></div>
<?php
}
?>
<div class="post-info p20px">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="post-meta"><span class="theauthor"><i class="fa fa-user"></i> <?php echo get_the_author(); ?></span> <span class="thetime"><i class="fa fa-clock-o"></i> <?php the_date(); ?></span> <span class="thecategory"><i class="fa fa-tags"></i><?php the_category(', '); ?></span> <span class="thecomments"><i class="fa fa-comments"></i><?php echo $write_comments; ?></span> </div>
<br/>
<?php echo substr(get_the_excerpt(), 0,600); ?> <a href="<?php the_permalink(); ?>">Read this post »</a>
</div>
</div>
<?php endwhile;?>
<?php wp_pagenavi( array( 'query' => $the_query ) ); ?>
不要打扰其他功能和变量或html。我只需要让pagenavi工作。 我从here
获得了pagenavi代码答案 0 :(得分:0)
我也发现了问题和解决方案。
我必须在'&paged='.$paged
上添加$wp_query()
,并启用该方案的导航。
所以,第一行
<?php $the_query = new WP_Query( 'showposts=8' ); ?>
必须替换为
<?php $the_query = new WP_Query( 'showposts=8' . '&paged='.$paged); ?>
这就是全部。 查看实时预览(我应用此项目的项目):Here