Taxonomies
List all the taxonomies.
Table Specific Information
SELECT
The connector uses the WordPress API to process some of the filters. The connector processes other filters client-side within the connector.
For example, the following queries are processed server side.
SELECT * FROM Taxonomies WHERE Slug = 'books'
Columns
| Name | Type | References | Description |
| Hierarchical | Boolean | Indicates whether the taxonomy supports hierarchical relationships, allowing parent and child terms, such as categories. | |
| Name | String | The display name of the taxonomy as registered in WordPress. | |
| Slug [KEY] | String | A URL-friendly identifier for the taxonomy, typically used in permalinks and API requests. | |
| RestBase | String | The base route used in the WordPress REST API for accessing terms within this taxonomy. | |
| Description | String | A text description that explains the purpose or usage of the taxonomy. |
Pseudo-Columns
Pseudo-column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the data returned by the operation.
| Name | Type | Description | |
| Context | String | Defines the request scope, which determines which fields are included in the response, such as view or edit.
The allowed values are view, edit, embed. |