%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/loop/course/ |
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/templates/loop/course/price.php |
<?php /** * Template for displaying price of course within the loop. * * This template can be overridden by copying it to yourtheme/learnpress/loop/course/price.php. * * @author ThimPress * @package Learnpress/Templates * @version 3.0.0 */ /** * Prevent loading this file directly */ defined( 'ABSPATH' ) || exit(); $course = LP_Global::course(); ?> <div class="course-price"> <?php if ( $price_html = $course->get_price_html() ) { ?> <?php if ( $course->get_origin_price() != $course->get_price() ) { ?> <?php $origin_price_html = $course->get_origin_price_html(); ?> <span class="origin-price"><?php echo $origin_price_html; ?></span> <?php } ?> <span class="price"><?php echo $price_html; ?></span> <?php } ?> </div>