Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
tutor
/
templates
/
single
:
next-previous-pagination.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Single next previous pagination * * @author Themeum * @url https://themeum.com * * @package TutorLMS/Templates * @version 1.4.7 */ ?> <div class="tutor-next-previous-pagination-wrap"> <?php if ( $previous_id ) : ?> <a class="tutor-previous-link tutor-previous-link-<?php echo esc_attr( $previous_id ); ?>" href="<?php echo esc_url( get_the_permalink( $previous_id ) ); ?>"> ← <?php _e( 'Previous' ); ?> </a> <?php endif; ?> <?php if ( $next_id ) : ?> <a class="tutor-next-link tutor-next-link-<?php echo esc_attr( $next_id ); ?>" href="<?php echo esc_url( get_the_permalink( $next_id ) ); ?>"> <?php _e( 'Next' ); ?> → </a> <?php endif; ?> </div>