<?php
$posts = get_field('related_posts');
if ($posts) { ?>
<?php foreach ($posts as $post) {
setup_postdata($post); ?>
<div class="season-item">
<div class="serial__preview">
<a class="serial__poster" href="<?php the_permalink(); ?>">
<img loading="lazy" src="<?php echo get_template_directory_uri(); ?>/images/play.svg" class="serial__play" alt="">
<img loading="lazy" class="serial__img" src="<?php echo the_field('миниатюра'); ?>" alt="">
<p>52:00</p>
</a>
</div>
<div class="serial__text">
<a href="<?php the_permalink(); ?>" class="serial__number"><?php the_title(); ?></a>
</div>
</div>
<?php } //End for each loop
wp_reset_postdata(); //Restores WP post data
?>
<?php } //End if
?>
<img loading="lazy" class="serial__img" src="<?php $variable = the_field('фотосериал', $page->ID); ?>" alt="">
<p><?php $variabl = the_field('имясериал', $page->ID); ?></p>
function addCard(event) {
event.preventDefault(); /* Не перезагружает страницу после отправки */
const name = form.elements.name;
const link = form.elements.link;
const cardContainer = createCard(name.value, link.value);
cardsContainer.appendChild(cardContainer);
form.reset(); /* Сбрасывает форму */
toggleModal(); /* закрывает окно*/
}