Created
June 11, 2018 09:33
-
-
Save rushijagani/49cbc9543c9d16a08bfa37d77b4e0ce0 to your computer and use it in GitHub Desktop.
Add Previous / next lesson links to the Lifter LMS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add Default Previuos / Next lesson pagination to the lesson template of Lifter LMS | |
*/ | |
add_action( 'wp', 'add_lifter_lesson_navigation' ); | |
function add_lifter_lesson_navigation(){ | |
if ( class_exists( 'LifterLMS' ) ) { | |
if ( is_lesson() ) { | |
add_action( 'lifterlms_single_lesson_after_summary', 'lifterlms_template_lesson_navigation', 20 ); | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment