Files
Landing/wp-content/themes/upstudy/archive-sfwd-courses-alt.php
T

24 lines
655 B
PHP
Raw Normal View History

2026-04-23 04:33:43 +03:30
<?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();