menu-locations
An associative array of menu locations to register.
Usage
Key | Type | Required | Default |
---|---|---|---|
"menu-locations" | array | No | [] |
The key
of the item will act as the identifier (like a slug) and the value
will be the descriptive text.
Example
<?php # config.php
return [
"menu-locations" => [
"main-nav" => "Main Navigation",
"footer-nav" => "Footer Navigation",
],
]