WP_REST_Attachments_Controller::register_routes()publicWP 5.3.0

Registers the routes for attachments.

Method of the class: WP_REST_Attachments_Controller{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_REST_Attachments_Controller = new WP_REST_Attachments_Controller();
$WP_REST_Attachments_Controller->register_routes();

Notes

Changelog

Since 5.3.0 Introduced.

WP_REST_Attachments_Controller::register_routes() code WP 6.4.3

public function register_routes() {
	parent::register_routes();
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base . '/(?P<id>[\d]+)/post-process',
		array(
			'methods'             => WP_REST_Server::CREATABLE,
			'callback'            => array( $this, 'post_process_item' ),
			'permission_callback' => array( $this, 'post_process_item_permissions_check' ),
			'args'                => array(
				'id'     => array(
					'description' => __( 'Unique identifier for the attachment.' ),
					'type'        => 'integer',
				),
				'action' => array(
					'type'     => 'string',
					'enum'     => array( 'create-image-subsizes' ),
					'required' => true,
				),
			),
		)
	);
	register_rest_route(
		$this->namespace,
		'/' . $this->rest_base . '/(?P<id>[\d]+)/edit',
		array(
			'methods'             => WP_REST_Server::CREATABLE,
			'callback'            => array( $this, 'edit_media_item' ),
			'permission_callback' => array( $this, 'edit_media_item_permissions_check' ),
			'args'                => $this->get_edit_media_item_args(),
		)
	);
}