如何将贴页分页添加到模板部件?

时间:2018-11-21 作者:angeladesign

如何使此页面显示贴子页面分页?我正在使用带有get\\u template\\u部分的自定义博客模板。

https://www.nowitconnects.com/blog/

<?php
/**
 * Template part for displaying blog content in page_blog.php
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package nowitconnects
 */
?>
<!-- blogs ================================================== -->
<section class="">
    <div class="">
        <div class="row">
            <!-- START BLOG LOOP -->
            <?php $the_query = new WP_Query( array( \'post_type\' => \'post\' ) ); 
            while( $the_query->have_posts() ) : $the_query->the_post(); ?>
                <div class="col-lg-8 col-md-8">
                    <div class="aside-feature">
                        <div class="col-md-4">
                            <div class="">
                                <?php // check if the post has a Post Thumbnail assigned to it.
                                if ( has_post_thumbnail() ) {
                                    the_post_thumbnail(\'full\', array(\'class\' => \'img-responsive\'));
                                } ?><br/>
                            </div>
                        </div>
                        <div class="col-md-7">
                            <?php the_title( \'<h3><a href="\'.get_permalink( $id ).\'">\', \'</a></h3>\' ); ?>
                            <?php the_excerpt(); ?><br/><hr/><br/>
                        </div>
                    </div>
                </div>
            <?php endwhile; ?> <!-- END BLOG LOOP -->
            <aside id="secondary" class="widget-area" role="complementary">
                <?php dynamic_sidebar( \'sidebar-1\' ); ?>
            </aside><!-- #secondary -->
        </div>
    </div>
</section>

1 个回复
SO网友:RiddleMeThis

在endwhile行之后,尝试添加。。。

<?php the_posts_pagination(); ?>

more info on the_posts_pagination()

结束

相关推荐

Count posts for pagination

我正在为一个网站分页<;上一页(页码)下一页>很简单,已经完成。但是现在我需要添加一个选择器来直接转到页面(例如:转到第7页),要这样做,我需要知道有多少页面,为此我需要计算在查询中找到了多少帖子。问题是这个网站有太多的帖子(>13.000),查询所有帖子都会减慢页面加载速度,这就像。。。10秒后页面才能加载。显然,这是不可接受的。分页解决了这个问题,因为一次只加载50或100篇文章,但我无法将它们全部计算在内。我可以在不加载的情况下统计某个查询中的帖子吗?或者我可以通过其他方式获得页数吗