Files
Landing/wp-content/themes/upstudy/learndash/tpl-part/single/single-layout-2.php
T

53 lines
1.5 KiB
PHP
Raw Normal View History

2026-04-23 04:33:43 +03:30
<?php
/**
* The template for displaying course single page
*/
get_header();
$ld_related_course_position = Upstudy::setting( 'ld_related_course_position' );
// ==== Course Header =====
while ( have_posts() ) : the_post();
upstudy_ld_course_page_title_section_05();
endwhile; wp_reset_postdata();
// ==== Content Area =====
echo '<div id="primary" class="content-area">';
echo '<main id="main" class="site-main" role="main">';
echo '<div class="upstudy-container">';
echo '<div class="upstudy-row upstudy-order-row">';
echo '<div class="upstudy-col-lg-8 upstudy-order-last">';
while ( have_posts() ) : the_post();
get_template_part( 'learndash/tpl-part/single/single', 'content' );
endwhile;
echo '</div>'; // End col-8
echo '<div class="upstudy-col-lg-4 upstudy-order-first">';
get_template_part( 'learndash/tpl-part/single/single', 'sidebar');
echo '</div>'; // End col-4
echo '</div>'; // End upstudy-row
if ( $ld_related_course_position == 'content' ) {
echo '<div class="related-post-wrap related_course">';
upstudy_ld_related_course_content();
echo '</div>';
}
echo '</div>';
echo '</main>';
echo '</div>';
get_footer();