Created
October 3, 2022 09:06
-
-
Save ramzs/a0a013e9ab0fe87a63e18a7236f632b9 to your computer and use it in GitHub Desktop.
Вывод подкатегорий Wordpress списком
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (is_category()) { | |
$current_cat=get_query_var('cat'); | |
$categories = wp_list_categories(array( | |
'child_of' => $current_cat, | |
'title_li' => '', | |
'use_desc_for_title' => false, | |
'hide_empty' => 0, | |
'exclude' => '13,7', | |
'hierarchical' => 0, | |
'show_option_none' => 0, | |
'hide_title_if_empty' => 0, | |
'current_category' => $current_cat | |
) | |
); | |
echo $categories; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment