wppaste
WordPress

WP_REST_Posts_Controller

Since
4.7.0
Source
wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:17
Core class to access posts via the REST API.

Hooks fired · 19

Every hook that fires from inside WP_REST_Posts_Controller, in the order it appears in the class, grouped by the method that fires it.

Properties · 4

$post_typestringprotected
Post type.
$metaWP_REST_Post_Meta_Fieldsprotected
Instance of a post meta fields object.
$password_check_passedint[]protected
Passwordless post access permitted.
$allow_batcharrayprotected
Whether the controller supports batching.

Methods · 40

Source

class WP_REST_Posts_Controller extends WP_REST_Controller {	/**	 * Post type.	 *	 * @since 4.7.0	 * @var string	 */	protected $post_type; 	/**	 * Instance of a post meta fields object.	 *	 * @since 4.7.0	 * @var WP_REST_Post_Meta_Fields	 */	protected $meta; 	/**	 * Passwordless post access permitted.	 *	 * @since 5.7.1	 * @var int[]	 */	protected $password_check_passed = array(); 	/**	 * Whether the controller supports batching.	 *	 * @since 5.9.0	 * @var array	 */	protected $allow_batch = array( 'v1' => true ); 	/**	 * Constructor.	 *	 * @since 4.7.0	 *	 * @param string $post_type Post type.	 */	public function __construct( $post_type ) {		$this->post_type = $post_type;		$obj             = get_post_type_object( $post_type );		$this->rest_base = ! empty( $obj->rest_base ) ? $obj->rest_base : $obj->name;		$this->namespace = ! empty( $obj->rest_namespace ) ? $obj->rest_namespace : 'wp/v2'; 		$this->meta = new WP_REST_Post_Meta_Fields( $this->post_type );	} 	/**	 * Registers the routes for posts.	 *	 * @since 4.7.0	 *	 * @see register_rest_route()	 */	public function register_routes() { 		register_rest_route(			$this->namespace,			'/' . $this->rest_base,			array(				array(					'methods'             => WP_REST_Server::READABLE,					'callback'            => array( $this, 'get_items' ),					'permission_callback' => array( $this, 'get_items_permissions_check' ),					'args'                => $this->get_collection_params(),				),				array(					'methods'             => WP_REST_Server::CREATABLE,					'callback'            => array( $this, 'create_item' ),					'permission_callback' => array( $this, 'create_item_permissions_check' ),					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ),				),				'allow_batch' => $this->allow_batch,				'schema'      => array( $this, 'get_public_item_schema' ),			)		); 		$schema        = $this->get_item_schema();

History

Introduced in 4.7.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.