23 lines
619 B
PHP
23 lines
619 B
PHP
<?php
|
|
|
|
$ld_single_page_layout = Upstudy::setting( 'ld_single_page_layout' );
|
|
$ld_instructor_single = Upstudy::setting( 'ld_instructor_single' );
|
|
|
|
|
|
//if ( in_array( $ld_single_page_layout, array('3')) ) {
|
|
echo '<div class="upstudy-course-single-header-meta-01">';
|
|
|
|
if ($ld_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>';
|
|
//}
|