body.php
4 years ago
content.php
5 years ago
no_course_belongs.php
5 years ago
previous-attempts.php
4 years ago
single_quiz_contents.php
4 years ago
top.php
4 years ago
content.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @package TutorLMS/Templates |
| 4 | * @version 1.4.3 |
| 5 | */ |
| 6 | |
| 7 | |
| 8 | global $post; |
| 9 | $currentPost = $post; |
| 10 | $quiz_id = get_the_ID(); |
| 11 | ?> |
| 12 | |
| 13 | <div id="tutor-quiz-content" class="tutor-quiz-content tutor-quiz-content-<?php the_ID(); ?>"> |
| 14 | <?php |
| 15 | |
| 16 | do_action('tutor_quiz/content/before', $quiz_id); |
| 17 | |
| 18 | the_content(); |
| 19 | do_action('tutor_quiz/content/after', $quiz_id); |
| 20 | ?> |
| 21 | </div> |