single-no-access.php 302 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 23 24
<?php
/**
 * Template: Single post no access
 *
 * @package LifterLMS/Templates
 *
 * @since Unknown
 * @version 3.35.0
 */

defined( 'ABSPATH' ) || exit;

global $post;
get_header();

while ( have_posts() ) :

	the_post();

	llms_get_template_part( 'content', 'no-access' );

endwhile;

get_footer();