add new logic rubrics

This commit is contained in:
argoexpert press
2025-05-10 00:00:09 +03:00
parent 9ff9de46a4
commit 64154c3dc5
7 changed files with 136 additions and 22 deletions

View File

@@ -1,14 +1,7 @@
<?php
$categories = get_categories(array(
'exclude' => get_expression_parts(),
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => false
));
$firstElement = array_shift($categories);
array_push($categories, $firstElement);
// Получаем текущие рубрики из меню
$categories = get_categories_from_menu_exact_order('rubrics');
foreach ($categories as $category) {
if ($category->slug === 'uncategorized') continue;