Answers for "pagination setting are enable in wordpress"

PHP
0

add pagination to wordpress

<?php
     echo paginate_links( array(
        'mid_size'  => 3,
        'prev_text' => __( '&laquo; Prev', 'textdomain' ),
        'next_text' => __( 'Next &raquo;', 'textdomain' ),
      ) );
 ?>
Posted by: Guest on May-07-2020

Code answers related to "pagination setting are enable in wordpress"

Browse Popular Code Answers by Language