Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
100
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. $lesson = new LLMS_Lesson( get_the_ID() );
  3.  
  4. // previous
  5. $prev_id = $lesson->get_previous_lesson();
  6. if ( $prev_id ) {
  7. $prev_section = new LLMS_Section( $prev_id );
  8. echo get_the_title( $prev_section->id );
  9. }
  10.  
  11.  
  12. $next_id = $lesson->get_next_lesson();
  13. if ( $next_id ) {
  14. $next_section = new LLMS_Section( $next_id );
  15. echo get_the_title( $next_section->id );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement