| Server IP : 172.67.134.116 / Your IP : 216.73.217.54 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/academy/ |
Upload File : |
<?php
/**
* The Template for displaying all single courses.
*
* This template can be overridden by copying it to yourtheme/academy/single-course.php.
*
* the readme will list any important changes.
*
* @since 2.6.00
* @version 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
academy_get_header( 'course' );
/**
* @hook - academy/templates/before_main_content
*/
do_action( 'academy/templates/before_main_content', 'single-course.php' );
?>
<div class="academy-single-course">
<div class="academy-container">
<div class="academy-row">
<?php
while ( have_posts() ) :
the_post();
Academy\Helper::get_template_part( 'content', 'single-course' );
endwhile; // end of the loop.
/**
* @hook - academy/templates/single_course_sidebar
* @hooked academy_single_course_sidebar - 10
*/
do_action( 'academy/templates/single_course_sidebar' );
?>
</div>
</div>
</div>
<?php
/**
* @hook - academy/templates/after_main_content
*/
do_action( 'academy/templates/after_main_content', 'single-course.php' );
academy_get_footer( 'course' );