NavigationMenus
List, Update, Create and Delete NavigationMenus of the WordPressOnline website.
Table Specific Information
SELECT
The driver uses the WordPress API to process some of the filters.
- Id supports the '=' comparison.
The driver processes other filters client-side within the driver.
For Example:
SELECT * FROM NavigationMenus where id='780374349';
Insert
To insert new navigation menu, the following column is required: Name.
INSERT INTO NavigationMenus(Name) VALUES('testing');
Update
To update a navigation menu, you must specify the following column: Id.
UPDATE NavigationMenus SET name='updated testing' where id='780374351';
Delete
To delete a navigation menu, you must specify the following column: Id.
DELETE FROM NavigationMenus where id='780374351';
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Int | True |
The unique identifier of the navigation menu within the WordPress site. | |
| Name | String | False |
The display name of the navigation menu as it appears in the WordPress admin or site theme. | |
| Description | String | False |
A short summary or purpose of the navigation menu, typically defined by the site administrator. | |
| Items | String | False |
Includes details about each menu item, such as its ID, type, content reference, and any applicable nested child items. | |
| Locations | String | False |
Specifies the theme locations where the menu can be assigned, such as header, footer, or sidebar. |