single-certificate.php 286 Bytes
Newer Older
cyrille's avatar
cyrille committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
/**
 * Template: Single Certificate
 *
 * @package LifterLMS/Templates
 *
 * @since Unknown
 * @version 3.35.0
 */

defined( 'ABSPATH' ) || exit;

get_header();

while ( have_posts() ) :
	the_post();

	llms_get_template_part( 'content', 'certificate' );

endwhile;

get_footer();