![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/plugins/trx_addons/components/cpt/courses/ |
<?php /** * The template to display the course's single post * * @package ThemeREX Addons * @since v1.2 */ get_header(); while ( have_posts() ) { the_post(); $meta = (array)get_post_meta(get_the_ID(), 'trx_addons_options', true); do_action('trx_addons_action_before_article', 'courses.single'); ?> <article id="post-<?php the_ID(); ?>" data-post-id="<?php the_ID(); ?>" <?php post_class( 'courses_single itemscope' ); trx_addons_seo_snippets('', 'Article'); ?>> <?php do_action('trx_addons_action_article_start', 'courses.single'); ?> <section class="courses_page_header"> <?php // Image if ( !trx_addons_sc_layouts_showed('featured') && has_post_thumbnail() ) { ?><div class="courses_page_featured"><?php do_action('trx_addons_action_before_featured'); the_post_thumbnail( apply_filters('trx_addons_filter_thumb_size', 'full', 'courses-single'), trx_addons_seo_image_params(array( 'alt' => get_the_title() )) ); do_action('trx_addons_action_after_featured'); ?></div><?php } // Title, price and meta if ( !trx_addons_sc_layouts_showed('title') ) { ?><h2 class="courses_page_title"><?php the_title(); ?><div class="courses_page_price"><?php $price = explode('/', $meta['price']); echo esc_html($price[0]) . (!empty($price[1]) ? '<span class="courses_page_period">'.$price[1].'</span>' : ''); ?></div><?php ?></h2><?php } else { ?><div class="courses_page_price"><?php $price = explode('/', $meta['price']); echo esc_html($price[0]) . (!empty($price[1]) ? '<span class="courses_page_period">'.$price[1].'</span>' : ''); ?></div><?php } ?><div class="courses_page_meta"> <span class="courses_page_meta_item courses_page_meta_date"><?php $dt = $meta['date']; echo sprintf($dt < date('Y-m-d') ? esc_html__('Started on %s', 'trx_addons') : esc_html__('Starting %s', 'trx_addons'), '<span class="courses_page_meta_item_date">' . date_i18n(get_option('date_format'), strtotime($dt)) . '</span>'); ?></span><?php if (!empty($meta['time'])) { ?><span class="courses_page_meta_item courses_page_meta_time"><?php echo esc_html($meta['time']); ?></span><?php } if (!empty($meta['duration'])) { ?><span class="courses_page_meta_item courses_page_meta_duration"><?php echo esc_html($meta['duration']); ?></span><?php } ?></div> </section> <?php // Post content if ( trim( get_the_content() ) != '' || trx_addons_is_preview( 'elementor' ) ) { ?><div class="courses_page_content entry-content"<?php trx_addons_seo_snippets('articleBody'); ?>><?php the_content( ); ?></div><?php } // Link to the product if (!empty($meta['product']) && (int) $meta['product'] > 0) { ?><div class="courses_page_buttons"> <a href="<?php echo esc_url(get_permalink($meta['product'])); ?>" class="sc_button theme_button"><?php esc_html_e('Join the Course', 'trx_addons'); ?></a> </div><?php } do_action('trx_addons_action_article_end', 'courses.single'); ?></article><?php do_action('trx_addons_action_after_article', 'courses.single'); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } } get_footer();