Skip to content

Instantly share code, notes, and snippets.

@rushijagani
Created June 11, 2018 09:33
Show Gist options
  • Save rushijagani/49cbc9543c9d16a08bfa37d77b4e0ce0 to your computer and use it in GitHub Desktop.
Save rushijagani/49cbc9543c9d16a08bfa37d77b4e0ce0 to your computer and use it in GitHub Desktop.
Add Previous / next lesson links to the Lifter LMS.
<?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