File: /home/k/kulikosl/kulikosl.beget.tech/public_html/back/zootheme 2612/archive-clinics.php
<?php get_header();
?>
<section class="section section_view_slider">
<div class="section__inner">
<div class="layout layout-grid layout_cols_12">
<h2 class="section__header">Наши клиники</h2>
<section class="section__items swiper mySwipers">
<div class="section__items-body swiper-wrappers">
<?php
$args=array();
$args['post_type']='clinics';
$args['posts_per_page']='-1';
global $wp_query;
global $page, $numpages, $multipage, $more;
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
$sort=get_the_ID();
include (TEMPLATEPATH . '/templates/clinic.php');
endwhile;
wp_reset_postdata();
endif;
?>
</div>
<div style="clear: both"></div>
</section>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<?php get_footer();?>