Title: WP_REST_Template_Revisions_Controller::register_routes
Published: November 8, 2023
Last modified: May 20, 2026

---

# WP_REST_Template_Revisions_Controller::register_routes()

## In this article

 * [Description](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#description)
    - [See also](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#see-also)
 * [Source](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#wp--skip-link--target)

Registers the routes for revisions based on post types supporting revisions.

## 󠀁[Description](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#description)󠁿

### 󠀁[See also](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#see-also)󠁿

 * [register_rest_route()](https://developer.wordpress.org/reference/functions/register_rest_route/)

## 󠀁[Source](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#source)󠁿

    ```php
    public function register_routes() {

    	register_rest_route(
    		$this->namespace,
    		sprintf(
    			'/%s/(?P<parent>%s%s)/%s',
    			$this->parent_base,
    			/*
    			 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
    			 * Excludes invalid directory name characters: `/:<>*?"|`.
    			 */
    			'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
    			// Matches the template name.
    			'[\/\w%-]+',
    			$this->rest_base
    		),
    		array(
    			'args'   => array(
    				'parent' => array(
    					'description'       => __( 'The id of a template' ),
    					'type'              => 'string',
    					'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
    				),
    			),
    			array(
    				'methods'             => WP_REST_Server::READABLE,
    				'callback'            => array( $this, 'get_items' ),
    				'permission_callback' => array( $this, 'get_items_permissions_check' ),
    				'args'                => $this->get_collection_params(),
    			),
    			'schema' => array( $this, 'get_public_item_schema' ),
    		)
    	);

    	register_rest_route(
    		$this->namespace,
    		sprintf(
    			'/%s/(?P<parent>%s%s)/%s/%s',
    			$this->parent_base,
    			/*
    			 * Matches theme's directory: `/themes/<subdirectory>/<theme>/` or `/themes/<theme>/`.
    			 * Excludes invalid directory name characters: `/:<>*?"|`.
    			 */
    			'([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)',
    			// Matches the template name.
    			'[\/\w%-]+',
    			$this->rest_base,
    			'(?P<id>[\d]+)'
    		),
    		array(
    			'args'   => array(
    				'parent' => array(
    					'description'       => __( 'The id of a template' ),
    					'type'              => 'string',
    					'sanitize_callback' => array( $this->parent_controller, '_sanitize_template_id' ),
    				),
    				'id'     => array(
    					'description' => __( 'Unique identifier for the revision.' ),
    					'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' ) ),
    				),
    			),
    			array(
    				'methods'             => WP_REST_Server::DELETABLE,
    				'callback'            => array( $this, 'delete_item' ),
    				'permission_callback' => array( $this, 'delete_item_permissions_check' ),
    				'args'                => array(
    					'force' => array(
    						'type'        => 'boolean',
    						'default'     => false,
    						'description' => __( 'Required to be true, as revisions do not support trashing.' ),
    					),
    				),
    			),
    			'schema' => array( $this, 'get_public_item_schema' ),
    		)
    	);
    }
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php#L72)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php#L72-L156)

## 󠀁[Related](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#related)󠁿

| Uses | Description | 
| [register_rest_route()](https://developer.wordpress.org/reference/functions/register_rest_route/)`wp-includes/rest-api.php` |

Registers a REST API route.

  | 
| [__()](https://developer.wordpress.org/reference/functions/__/)`wp-includes/l10n.php` |

Retrieves the translation of $text.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/classes/wp_rest_template_revisions_controller/register_routes/?output_format=md#changelog)󠁿

| Version | Description | 
| [6.4.0](https://developer.wordpress.org/reference/since/6.4.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fwp_rest_template_revisions_controller%2Fregister_routes%2F)
before being able to contribute a note or feedback.