wppaste
WordPress

WP_REST_Comments_Controller

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

Compatibility

WordPress
since 4.7.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Hooks and filters fired · 15

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

Properties · 1

$metaWP_REST_Comment_Meta_Fieldsprotected
Instance of a comment meta fields object.

Methods · 27

Source code

class WP_REST_Comments_Controller extends WP_REST_Controller { 	/**	 * Instance of a comment meta fields object.	 *	 * @since 4.7.0	 * @var WP_REST_Comment_Meta_Fields	 */	protected $meta; 	/**	 * Constructor.	 *	 * @since 4.7.0	 */	public function __construct() {		$this->namespace = 'wp/v2';		$this->rest_base = 'comments'; 		$this->meta = new WP_REST_Comment_Meta_Fields();	} 	/**	 * Registers the routes for comments.	 *	 * @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 ),				),				'schema' => array( $this, 'get_public_item_schema' ),			)		); 		register_rest_route(			$this->namespace,			'/' . $this->rest_base . '/(?P<id>[\d]+)',			array(				'args'   => array(					'id' => array(						'description' => __( 'Unique identifier for the comment.' ),						'type'        => 'integer',					),				),				array(					'methods'             => WP_REST_Server::READABLE,					'callback'            => array( $this, 'get_item' ),					'permission_callback' => array( $this, 'get_item_permissions_check' ),					'args'                => array(						'context'  => $this->get_context_param( array( 'default' => 'view' ) ),						'password' => array(							'description' => __( 'The password for the parent post of the comment (if the post is password protected).' ),							'type'        => 'string',						),					),				),				array(					'methods'             => WP_REST_Server::EDITABLE,					'callback'            => array( $this, 'update_item' ),					'permission_callback' => array( $this, 'update_item_permissions_check' ),					'args'                => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ),				),				array(

Changelog

Introduced in 4.7.0. One change between 6.7.7 and 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.

6.9.7
Method check_post_type_supports_notes() added.verified against source
4.7.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/rest-api/endpoints/class-wp-rest-comments-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.