Files
agroexpert/partials/category-menu-for-category.php

31 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2024-03-01 17:47:03 +03:00
<?php
2024-05-22 21:02:50 +03:00
2025-05-10 00:00:09 +03:00
// Получаем текущие рубрики из меню
$categories = get_categories_from_menu_exact_order('rubrics');
2024-03-01 17:47:03 +03:00
$current_term = get_queried_object();
// Получаем ID текущей категории или категорий поста
$current_term_ids = [];
if (is_single()) {
$current_term_ids = wp_get_post_categories($current_term->ID);
} elseif (is_category()) {
$current_term_ids[] = $current_term->term_id;
}
foreach ($categories ?? [] as $cat) {
if ($cat->slug === 'uncategorized') continue;
$icon = get_field('icon', 'category_' . $cat->term_id);
$bg_image = get_field('bg_image', 'category_' . $cat->term_id);
2025-02-04 00:19:35 +03:00
if($bg_image){
2024-03-01 17:47:03 +03:00
2025-02-04 00:19:35 +03:00
$class = in_array($cat->term_id, $current_term_ids) ? 'is-active' : '';
echo "<a href='" . get_category_link($cat->term_id) . "' class='menu-vertical__item " . $class . "'>
2024-03-01 17:47:03 +03:00
<span class='menu-vertical__item-icon'><img src='" . $icon . "' alt=''></span>
<span class='menu-vertical__item-text'>$cat->name</a></span>
</a>
";
2025-02-04 00:19:35 +03:00
}
2024-03-01 17:47:03 +03:00
}