Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ramzs/a0a013e9ab0fe87a63e18a7236f632b9 to your computer and use it in GitHub Desktop.
Save ramzs/a0a013e9ab0fe87a63e18a7236f632b9 to your computer and use it in GitHub Desktop.
Вывод подкатегорий Wordpress списком
<?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