Files
Landing/wp-content/themes/upstudy/learnpress/tpl-part/single/meta-top.php
T
2026-04-23 04:33:43 +03:30

32 lines
1.4 KiB
PHP

<?php
$lp_single_page_layout = Upstudy::setting( 'lp_single_page_layout' );
$lp_instructor_single = Upstudy::setting( 'lp_instructor_single' );
$lp_single_last_update = Upstudy::setting( 'lp_single_last_update' );
$lp_lesson_single = Upstudy::setting( 'lp_lesson_single' );
$lp_single_enroll_btn = Upstudy::setting( 'lp_single_enroll_btn' );
$lp_duration_single = Upstudy::setting( 'lp_duration_single' );
$lp_single_review = Upstudy::setting( 'lp_single_review' );
$lp_course_feature_quizzes_show = Upstudy::setting( 'lp_course_feature_quizzes_show' );
$lp_course_feature_duration_show = Upstudy::setting( 'lp_course_feature_duration_show' );
$lp_course_feature_lessons_show = Upstudy::setting( 'lp_course_feature_lessons_show' );
$lp_single_last_update = Upstudy::setting( 'lp_single_last_update' );
$lp_course_feature_enroll_show = Upstudy::setting( 'lp_course_feature_enroll_show' );
if ( in_array( $lp_single_page_layout, array('3')) ) {
echo '<div class="upstudy-course-single-header-meta-01">';
if ($lp_instructor_single) {
echo '<div class="course-instructor post-author">';
echo '<span class="meta-value"><i class="meta-icon dt-icon-user"></i>';
the_author();
echo '</span>';
echo '</div>';
}
echo '</div>';
}