Current File : /home/kelaby89/babyl0n.restaurant/wp-content/themes/restar/templates/pagination.php |
<?php
/**
* @Packge : Restar
* @Version : 1.0
* @Author : Themeholy
* @Author URI : https://themeforest.net/user/themeholy
*
*/
// Block direct access
if( !defined( 'ABSPATH' ) ){
exit();
}
if( !empty( restar_pagination() ) ) :
?>
<!-- Post Pagination -->
<div class="th-pagination text-center">
<ul>
<?php
$prev = '<i class="far fa-arrow-left"></i>';
$next = '<i class="far fa-arrow-right"></i>';
// previous
if( get_previous_posts_link() ){
echo '<li>';
previous_posts_link( $prev );
echo '</li>';
}
echo restar_pagination();
// next
if( get_next_posts_link() ){
echo '<li>';
next_posts_link( $next );
echo '</li>';
}
?>
</ul>
</div>
<!-- End of Post Pagination -->
<?php endif;