我在标准循环/查询中创建了一个自定义的post-type-page(page-portfolio.php),并为Custom-Post-Types创建了第二个循环。在这个CPT-Page上我想展示一个分页。因此我从这里使用wp_bootstrap_pagination:github
在我的常规档案页面上,导航有效,但只在那里。怎么了?因为两个循环/查询有问题吗?
<?php
/**
* Template Name: Portfolio
* The template for displaying portfolio posts.
*
* @package Theme Name
*/
get_header(); ?>
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php if ( comments_open() || get_comments_number() ) : ?>
<section class="section-gradient">
<div class="container">
comments_template();
</div><!-- .container -->
</section>
<?php endif; ?>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
<section class="section-gradient">
<div class="container">
<div class="row">
<?php
$paged = ( get_query_var('page') ) ? get_query_var('page') : 1;
$args = array( 'post_type' => 'portfolio', 'paged' => $paged, 'posts_per_page' => 3 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php get_template_part( 'content', 'portfolio' ); ?>
<?php if ( comments_open() || get_comments_number() ) : ?>
<section class="section-gradient">
<div class="container">
comments_template();
</div><!-- .container -->
</section>
<?php endif; ?>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_postdata(); ?>
</div><!-- .row -->
</div>
</section>
<section class="section-lightdark">
<div class="container">
<?php
if ( function_exists('wp_bootstrap_pagination') )
wp_bootstrap_pagination();
?>
</div>
</section>
</main><!-- #main -->
</div><!-- #primary -->
答案 0 :(得分:-1)
尝试插入if ($loop->have_posts()) :
之前,在结束之前关闭这个条件。