# learnpress/4.2.0/templates/loop/course/price.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.2.0. 22 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.2.0/code/templates/loop/course/price.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.2.0/raw/templates/loop/course/price.php
- Modified: 2022-11-14T06:50:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.2.0/code/templates/loop/course/price.php#L10-L20`.

```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.1
 */

defined( 'ABSPATH' ) || exit();

if ( ! isset( $course ) || ! isset( $price_html ) ) {
	return;
}
?>

<div class="course-price">
	<?php echo wp_kses_post( $price_html ); ?>
</div>

```
