1

我有这个代码:

<?php $q = new WP_Query(array(
            'post_type' => 'oferty'
        ));
    ?>
    <?php while ($q -> have_posts()) : $q -> the_post(); ?>
    <!-- .post | id: <? echo $post->ID; ?> -->
        <article <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <div class="entry">
                <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
                <small><?php echo get_field('bank'); ?></small>
                <?php the_content(); ?>
            </div>
            <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail' ); ?>
            <?php if($thumb) : ?>
            <div class="bankimg" style="background-image: url('<?php echo $thumb[0];?>')"></div>
            <?php endif; ?>
            <div class="clear"></div>
        </article>
        <!-- /.post | id: <? echo $post->ID; ?> -->
    <?php endwhile; wp_reset_query(); ?>
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>

它用于wp_query列出来自 post type 的所有帖子oferty。我在 WordPress 选项中将帖子的限制设置为 2 并且它可以工作 - 但没有显示分页。我尝试了 WP PageNavi、WP Pagination 和普通 WordPress 的 prev/next 链接。

4

1 回答 1

2

查询自定义帖子类型时查看分页参数:

https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters

具体来说,试试这个:

$q = new WP_Query(array(
    'post_type' => 'oferty',
    'posts_per_page' => 2
));
于 2012-09-08T18:57:32.783 回答