<?php /** * Single next previous pagination * * @package Tutor\Templates * @subpackage Single * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 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 esc_html_e( 'Previous', 'tutor' ); ?> </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 esc_html_e( 'Next', 'tutor' ); ?> → </a> <?php endif; ?> </div>