Rest Api Controllers
REST API Controller Hooks
Overview REST API controllers fire numerous hooks for filtering and action purposes. Most hooks include a dynamic portion based on...
WordPress REST API Controllers Overview
Architecture WordPress REST API controllers follow a consistent object-oriented architecture based on the abstract WP_REST_Controller class. Each controller manages a...
WP_REST_Users_Controller
Core class used to manage users via the REST API. Class Synopsis class WP_REST_Users_Controller extends WP_REST_Controller { protected $meta; protected...
WP_REST_Posts_Controller
Core class to access posts via the REST API. The most comprehensive controller, serving as the basis for many other...
WP_REST_Revisions_Controller
Core class used to access revisions via the REST API. Provides read-only access to post revisions plus deletion capability. Class...
WP_REST_Terms_Controller
Core class used to manage terms associated with a taxonomy via the REST API. Class Synopsis class WP_REST_Terms_Controller extends WP_REST_Controller...
WP_REST_Attachments_Controller
Core controller used to access attachments (media) via the REST API. Extends WP_REST_Posts_Controller with media-specific functionality. Class Synopsis class WP_REST_Attachments_Controller...
WP_REST_Comments_Controller
Core controller used to access comments via the REST API. Class Synopsis class WP_REST_Comments_Controller extends WP_REST_Controller { protected $meta; public...
WP_REST_Controller
Abstract base class for all REST API controllers. Provides the foundation for managing and interacting with REST API resources. Class...