pagination wp code example
Example 1: add pagination to wordpress
<?php
echo paginate_links( array(
'mid_size' => 3,
'prev_text' => __( '« Prev', 'textdomain' ),
'next_text' => __( 'Next »', 'textdomain' ),
) );
?>
Example 2: pagination
// input
$page, $limit
// output
$offset = (($page - 1) * $limit);
$limit = $limit;