File: /var/www/html/wp-content/themes/polygant_2023/archive-cases.php
<?php get_header('new'); ?>
<section class="info-page pageservcases">
<div class="container">
<div class="bread">
<p id="breadcrumbs"><span><span> <?php $my_home_url = apply_filters( 'wpml_home_url', get_option( 'home' ) ); ?>
<a href="<?php echo $my_home_url; ?>" ><?php the_field('главная_название' , apply_filters( 'wpml_object_id', 233, 'page' ) );?></a></span> — <span class="breadcrumb_last" aria-current="page"> <?php the_field('showcase_заголовок' , apply_filters( 'wpml_object_id', 233, 'page' ) );?></span></span></p>
</div>
<h1 class="page-cases-title">
<?php the_field('showcase_заголовок' , apply_filters( 'wpml_object_id', 233, 'page' ) );?>
</h1>
<div class="cases-wrapper-in-archive-page">
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<div class="cases-wrapper-item"> <a href="<?php the_permalink(); ?> " class="servpage-wraps-item-link"></a>
<img src=" <?php echo get_the_post_thumbnail_url(); ?>" alt="">
<div class="cases-wraps-item-title"><?php the_title();?></div>
<div class="cases-wraps-item-desc"><?php the_field('case-label' ); ?> </div>
</div>
<?php
endwhile;
else :
endif;
?>
</div>
</div>
</section>
<?php
get_footer('new');