<?php wp_list_categories('orderby=name&include=id рубрик&title_li=');?
orderby (string) You can sort the list by certain criteria. For example, by the number of posts in each category or by category name. There are the following criteria:
- ID - sort by ID;
- name - sorting by name (by default);
- slug - sorting by alt. name (slug);
- count - by the number of entries in the category;
- term_group - by group.
Default: 'name'
include (string) Lists only the specified categories. Specify category IDs separated by commas.
title_li (string) Sets the title of the list. If you change this parameter to '', then the title will not be displayed at all. Default: 'Categories'
hide_emptydefaults to 1, that is, empty categories are not displayed. - Ponio