24 lines
655 B
PHP
24 lines
655 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* The template for displaying archive pages
|
||
|
|
* @package Upstudy
|
||
|
|
* Version: 1.0.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
get_header();
|
||
|
|
echo '<div class="tpc-site-content-inner' . esc_attr( apply_filters( 'upstudy_container_class', ' upstudy-container' ) ) . '">';
|
||
|
|
do_action( 'upstudy_before_content' );
|
||
|
|
if ( have_posts() ) :
|
||
|
|
while ( have_posts() ) : the_post();
|
||
|
|
echo '<div class="upstudy-col-lg-12">';
|
||
|
|
the_title();
|
||
|
|
echo '</div>';
|
||
|
|
endwhile;
|
||
|
|
the_posts_pagination();
|
||
|
|
else :
|
||
|
|
_e( 'Sorry, No Course Found.', 'upstudy' );
|
||
|
|
endif;
|
||
|
|
echo '</div>';
|
||
|
|
|
||
|
|
get_footer();
|