30 lines
910 B
PHP
30 lines
910 B
PHP
<?php
|
|
/**
|
|
* БИТ.WMS Child Theme — archive-course.php
|
|
*
|
|
* Archive template for the 'course' custom post type.
|
|
*
|
|
* @package bitwms-child
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
get_header();
|
|
?>
|
|
<main class="archive-page">
|
|
<div class="container">
|
|
<h1 class="archive-page__title"><?php esc_html_e( 'Курсы', 'bitwms-child' ); ?></h1>
|
|
<div class="content-grid">
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<?php get_template_part( 'templates/content-card' ); ?>
|
|
<?php endwhile; ?>
|
|
<?php else : ?>
|
|
<p><?php esc_html_e( 'Курсы не найдены.', 'bitwms-child' ); ?></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php the_posts_pagination( array( 'prev_text' => '←', 'next_text' => '→' ) ); ?>
|
|
</div>
|
|
</main>
|
|
<?php get_footer();
|