wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



rest_url › WordPress Function

Seit4.4.0
Veraltetn/v
rest_url ( $path = '', $scheme = 'rest' )
Parameter: (2)
  • (string) $path Optional. REST route. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $scheme Optional. Sanitization scheme. Default 'rest'.
    Erforderlich: Nein
    Standard: 'rest'
Gibt zurück:
  • (string) Full URL to the endpoint.
Definiert in:
Codex:

Retrieves the URL to a REST endpoint.

Note: The returned URL is NOT escaped.


Quellcode

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