Files
sportpressa_backend/sidebar.php
2026-01-08 20:53:00 +03:00

29 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<aside class="sidebar">
<?php
// ID или слаг родительской рубрики
$parent_category_id = 174; // Укажите ID вашей рубрики
// Получаем дочерние рубрики
$child_categories = get_categories(array(
'child_of' => $parent_category_id,
'orderby' => 'name', // Сортировка по имени (алфавитно)
'order' => 'ASC', // Порядок: ASC - по возрастанию
'hide_empty' => 0, // Показывать даже пустые рубрики
'number' => 0,
));
if ($child_categories) {
echo '<div class="sideparts"><h4 class="sideparts-title"><a href="https://sportpressa.ru/news/">Все новости</a></h4><ul class="partslist">';
foreach ($child_categories as $category) {
// Выводим каждую подрубрику в <li>
echo '<li><a href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></li>';
}
echo '</ul></div>';
} else {
echo 'Подрубрики не найдены.';
}
?>
</aside>