rest_get_url_prefix()WP 4.4.0

Retrieves the URL prefix for any API resource.

Hooks from the function

Return

String. Prefix.

Usage

rest_get_url_prefix();

Changelog

Since 4.4.0 Introduced.

rest_get_url_prefix() code WP 6.5.2

function rest_get_url_prefix() {
	/**
	 * Filters the REST URL prefix.
	 *
	 * @since 4.4.0
	 *
	 * @param string $prefix URL prefix. Default 'wp-json'.
	 */
	return apply_filters( 'rest_url_prefix', 'wp-json' );
}