<script>
window.history.replaceState({}, null, '/');
</script>
<li>
<?php if (!empty($featured_categories)): ?>
<div class="featured-categories">
<div class="categories__inner">
<div class="section-heading">Выберите категорию</div>
<ul class="categories__list">
<?php foreach ($featured_categories as $category): ?>
<li id="#" class="categories__item">
<span class="category-item__image" style="<?php echo get_category_image_url($category); ?>">
<a href="<?php echo generate_category_url($category); ?>" class="category-item">
<span class="category-item__separator"></span>
<span class="category-item__title"><?php echo category_name($category); ?></span>
</a>
</span>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif; ?>
background-image: url(...);
background-size: cover;
background-position: center;
object-fit
.wrapper{
height: 100vh;
width: 100%;
position: relative;
}
.wrapper img{
object-fit: cover;
height: 100%;
width: 100%;
}