Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save flayder/f4c66a4694f8eaf0d466 to your computer and use it in GitHub Desktop.

Select an option

Save flayder/f4c66a4694f8eaf0d466 to your computer and use it in GitHub Desktop.
<?php
if ( !empty($cat) ) :
$parent_cat = get_category($cat);
$output = "<p>Дочерние рубрики раздела {$parent_cat->name}($cat):</p>";
$args = array(
'title_li' => null,
'child_of' => $cat,
'depth' => 1,
'echo' => 0,
'hide_empty' => 0,
'show_count' => 0,
);
$output .= wp_list_categories($args);
print $output;
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment