簡體   English   中英

具有多個WP_Query循環的分頁自定義帖子類型

[英]pagination custom post type with multiple WP_Query loop

將分頁功能添加到Functions.php並在template-product-listing.php中調用它后,結果中沒有任何顯示。 我對此有個大問題...

您能找到並解決問題嗎?

n

        <article class="row">

            <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

            <div id="single-head" class="sixteen columns">
                <h1><?php the_title(); ?></h1>
                <?php if (has_excerpt()) { the_excerpt(); } ?>
            </div>

            <div class="row">
                <nav id="portfolio-filters" class="sixteen columns">
                    <a href="#filter" class="active-item" data-filter="*"><?php _e('Show All', 'ci_theme'); ?></a>
                    <?php
                    $args = array(
                        'hide_empty' => 0
                    );

                    $skills = get_terms('product-category', $args);
                    ?>
                    <?php foreach ( $skills as $skill ) : ?>
                        <a href="#filter" data-filter=".<?php echo $skill->slug; ?>"><?php echo $skill->name; ?></a>
                    <?php endforeach; ?>
                </nav><!-- /portfolio-filters -->
            </div>

            <div id="portfolio-items" class="row">
                <?php $ci_product_query = new WP_Query('post_type=product&posts_per_page=4'); ?>
                <?php if ( $ci_product_query-> have_posts() ) : while ( $ci_product_query->have_posts() ) : $ci_product_query->the_post(); ?>
                <?php $item_skills = wp_get_object_terms($post->ID, 'product-category');    ?>

                <article class="<?php ci_e_setting('product_columns'); ?> columns <?php foreach ( $item_skills as $item_skill ) : echo $item_skill->slug.' '; endforeach; ?> columns portfolio-item">

                    <a href="<?php echo get_permalink(); ?>" title="<?php echo esc_attr(get_the_title()); ?>" class="fb">
                        <?php the_post_thumbnail('ci_portfolio_slider', array('class'=>'scale-with-grid')); ?>
                    </a>
                    <div class="portfolio-desc">
                        <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                        <p class="desc"><?php echo mb_substr(get_the_excerpt(), 0, 70); ?>...</p>
                    </div>
                </article><!-- /portfolio-item -->

                <?php endwhile; endif; ?>
                <?php wp_reset_postdata(); ?>

            </div><!-- /portfolio-items -->

            <?php get_template_part('part', 'call_to_action'); ?>

            <?php endwhile; endif; ?>
        <div class="pagination">
        <?php wp_pagination(); ?>
        </div>
        </article>

如果您確定有一個名為product的post_type並且其中有帖子...

嘗試:

 <div id="portfolio-items" class="row">
            <?php $ci_product_query = new WP_Query(array('post_type'=>'product', 'posts_per_page'=> 4); ?>
            <?php if ( $ci_product_query-> have_posts() ) : while ( $ci_product_query->have_posts() ) : $ci_product_query->the_post(); ?>

您知道您要為have_posts()中的每個帖子啟動一個新的wp_query嗎? 您可能想重新考慮您要實現的目標!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM