Answers for "how to get pagination for post"

PHP
0

the posts pagination

<?php the_posts_pagination( array(
    'mid_size'  => 2,
    'prev_text' => __( 'Back', 'textdomain' ),
    'next_text' => __( 'Onward', 'textdomain' ),
) ); ?>
Posted by: Guest on August-31-2021
0

see all the post in one catagory with out pagination

<?php $posts = new WP_Query(array('cat'=>20,'posts_per_page'=>-1)); ?>
Posted by: Guest on July-09-2020

Code answers related to "how to get pagination for post"

Browse Popular Code Answers by Language