comments.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Lesson comment template. |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Single\Lesson |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 3.9.0 |
| 10 | */ |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | ?> |
| 16 | <div id="tutor-course-spotlight-comments" class="tutor-tab-item<?php echo esc_attr( $is_active ? ' is-active' : '' ); ?>"> |
| 17 | <div class="tutor-container"> |
| 18 | <div class="tutor-course-spotlight-comments"> |
| 19 | <?php require __DIR__ . '/../comment.php'; ?> |
| 20 | </div> |
| 21 | </div> |
| 22 | </div> |
| 23 |