rest_url( string $path = '', string $scheme = 'rest' )

Retrieves the URL to a REST endpoint.

Description

Note: The returned URL is NOT escaped.

Parameters

$path

(string) (Optional) REST route.

Default value: ''

$scheme

(string) (Optional) Sanitization scheme.

Default value: 'rest'

Return

(string) Full URL to the endpoint.

Source

File: wp-includes/rest-api.php

function rest_url( $path = '', $scheme = 'rest' ) {
	return get_rest_url( null, $path, $scheme );
}

Changelog

Version Description
4.4.0 Introduced.

© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/rest_url