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



rest_get_url_prefix › WordPress Function

Seit4.4.0
Veraltetn/v
rest_get_url_prefix ( Keine Parameter )
Gibt zurück:
  • (string) Prefix.
Definiert in:
Codex:

Retrieves the URL prefix for any API resource.



Quellcode

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' );
}