Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
dreamleap.star4hire.com
/
wp-content
/
themes
/
edura
/
templates
✏️
Editing: pagination.php
<?php /** * @Packge : Edura * @Version : 1.0 * @Author : Themeholy * @Author URI : https://www.themeholy.com/ * */ // Block direct access if( !defined( 'ABSPATH' ) ){ exit(); } if( !empty( edura_pagination() ) ) : ?> <!-- Post Pagination --> <div class="th-pagination mb-30"> <ul class="list-style-none"> <?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 edura_pagination(); // next if( get_next_posts_link() ){ echo '<li>'; next_posts_link( $next ); echo '</li>'; } ?> </ul> </div> <!-- End of Post Pagination --> <?php endif;
💾 Save Changes
❌ Cancel