You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
function register_custom_menus() {
|
|
add_theme_support('menus');
|
|
register_nav_menus([
|
|
'main-menu' => 'Основное меню',
|
|
'cats-menu' => 'Меню для кошек',
|
|
'dogs-menu' => 'Меню для собак',
|
|
]);
|
|
}
|
|
add_action('after_setup_theme', 'register_custom_menus'); |