| [ Index ] |
PHP Cross Reference of WordPress |
[Source view] [Print] [Project Stats]
REST API: WP_REST_Taxonomies_Controller class
| File Size: | 440 lines (13 kb) |
| Included or required: | 0 times |
| Referenced: | 0 times |
| Includes or requires: | 0 files |
WP_REST_Taxonomies_Controller:: (9 methods):
__construct()
register_routes()
get_items_permissions_check()
get_items()
get_item_permissions_check()
get_item()
prepare_item_for_response()
get_item_schema()
get_collection_params()
Class: WP_REST_Taxonomies_Controller - X-Ref
Core class used to manage taxonomies via the REST API.| __construct() X-Ref |
| Constructor. since: 4.7.0 |
| register_routes() X-Ref |
| Registers the routes for taxonomies. since: 4.7.0 |
| get_items_permissions_check( $request ) X-Ref |
| Checks whether a given request has permission to read taxonomies. return: true|WP_Error True if the request has read access, WP_Error object otherwise. param: WP_REST_Request $request Full details about the request. since: 4.7.0 |
| get_items( $request ) X-Ref |
| Retrieves all public taxonomies. return: WP_REST_Response Response object on success, or WP_Error object on failure. param: WP_REST_Request $request Full details about the request. since: 4.7.0 |
| get_item_permissions_check( $request ) X-Ref |
| Checks if a given request has access to a taxonomy. return: true|WP_Error True if the request has read access for the item, otherwise false or WP_Error object. param: WP_REST_Request $request Full details about the request. since: 4.7.0 |
| get_item( $request ) X-Ref |
| Retrieves a specific taxonomy. return: WP_REST_Response|WP_Error Response object on success, or WP_Error object on failure. param: WP_REST_Request $request Full details about the request. since: 4.7.0 |
| prepare_item_for_response( $item, $request ) X-Ref |
| Prepares a taxonomy object for serialization. return: WP_REST_Response Response object. param: WP_Taxonomy $item Taxonomy data. param: WP_REST_Request $request Full details about the request. since: 4.7.0 since: 5.9.0 Renamed `$taxonomy` to `$item` to match parent class for PHP 8 named parameter support. |
| get_item_schema() X-Ref |
| Retrieves the taxonomy's schema, conforming to JSON Schema. return: array Item schema data. since: 4.7.0 since: 5.0.0 The `visibility` property was added. since: 5.9.0 The `rest_namespace` property was added. |
| get_collection_params() X-Ref |
| Retrieves the query params for collections. return: array Collection parameters. since: 4.7.0 |
| Generated: Tue Oct 28 01:00:02 2025 | Cross-referenced by PHPXref 0.7.1 |