Your IP : 216.73.216.95


Current Path : /var/www/mainsite/wp-content/themes/maxcoach/learnpress/loop/course/
Upload File :
Current File : /var/www/mainsite/wp-content/themes/maxcoach/learnpress/loop/course/thumbnail.php

<?php
/**
 * Template for displaying thumbnail of course within the loop.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/loop/course/thumbnail.php.
 *
 * @author   ThimPress
 * @package  Learnpress/Templates
 * @version  3.0.1
 */

/**
 * Prevent loading this file directly
 */
defined( 'ABSPATH' ) || exit();

/**
 * @var LP_Course $course
 */
$course = learn_press_get_course();

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

<div class="course-thumbnail maxcoach-image">
	<a href="<?php the_permalink(); ?>" class="course-permalink">
		<?php echo Maxcoach_LP_Course::instance()->get_course_image( $course->get_id(), '480x298' ); ?>
	</a>
</div>