Guest User

Untitled

a guest
Jun 13th, 2018
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. /**
  5. * Add Default Previuos / Next lesson pagination to the lesson template of Lifter LMS
  6. */
  7. add_action( 'wp', 'add_lifter_lesson_navigation' );
  8. function add_lifter_lesson_navigation(){
  9. if ( class_exists( 'LifterLMS' ) ) {
  10. if ( is_lesson() ) {
  11. add_action( 'lifterlms_single_lesson_after_summary', 'lifterlms_template_lesson_navigation', 20 );
  12. }
  13. }
  14. };
Add Comment
Please, Sign In to add comment