最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Pagination on custom post type without plugin

programmeradmin10浏览0评论

What's the best way to display pagination on a custom post type archive page without a plugin? I tried paginate_links() didn't work.

I'm using a custom query and here's the code:

$args = [
    'post_type'   => 'on_my_mind',
    'post_status' => 'publish',
];
$omm  = new WP_Query($args); ?>

<?php if ($omm->have_posts()): while ($omm->have_posts()): $omm->the_post(); ?>
    <?php get_template_part('template-parts/content', 'on_my_mind') ?>
<?php endwhile; ?>
<?php endif; ?> 
<?php wp_reset_postdata(); ?>
发布评论

评论列表(0)

  1. 暂无评论