mirror of
https://gh.wpcy.net/https://github.com/wp-cli/handbook.git
synced 2026-04-27 02:46:16 +08:00
26 lines
707 B
Markdown
26 lines
707 B
Markdown
# wp menu location
|
|
|
|
Assigns, removes, and lists a menu's locations.
|
|
|
|
### EXAMPLES
|
|
|
|
# List available menu locations
|
|
$ wp menu location list
|
|
+----------+-------------------+
|
|
| location | description |
|
|
+----------+-------------------+
|
|
| primary | Primary Menu |
|
|
| social | Social Links Menu |
|
|
+----------+-------------------+
|
|
|
|
# Assign the 'primary-menu' menu to the 'primary' location
|
|
$ wp menu location assign primary-menu primary
|
|
Success: Assigned location primary to menu primary-menu.
|
|
|
|
# Remove the 'primary-menu' menu from the 'primary' location
|
|
$ wp menu location remove primary-menu primary
|
|
Success: Removed location from menu.
|
|
|
|
|
|
|
|
|