Files
bit-wms-site/wp-content/themes/bitwms-child/archive-material.php
T

30 lines
930 B
PHP

<?php
/**
* БИТ.WMS Child Theme — archive-material.php
*
* Archive template for the 'material' 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' => '&larr;', 'next_text' => '&rarr;' ) ); ?>
</div>
</main>
<?php get_footer();