pagination on custom post wp_query

前端 未结 4 1822
轻奢々
轻奢々 2020-12-01 14:40


        
4条回答
  •  日久生厌
    2020-12-01 15:39

    This question was answered very adequately by @Trevor but I needed to implement numbered pagination, and there was a bit more research to do. I hope my code helps others implement numbered pagination.

        
    have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); echo the_title(); endwhile; ?>

提交回复
热议问题