wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



home_url › WordPress Function

Od3.0.0
Przestarzałyn/a
home_url ( $path = '', $scheme = null )
Parametry: (2)
  • (string) $path Optional. Path relative to the home URL. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (string|null) $scheme Optional. Scheme to give the home URL context. Accepts 'http', 'https', 'relative', 'rest', or null. Default null.
    Wymagane: Nie
    Domyślny: null
Powrót:
  • (string) Home URL link with optional path appended.
Zdefiniowane na:
Codex:

Retrieves the URL for the current site where the front end is accessible.

Returns the 'home' option with the appropriate protocol. The protocol will be 'https' if is_ssl() evaluates to true; otherwise, it will be the same as the 'home' option. If $scheme is 'http' or 'https', is_ssl() is overridden.


Źródło

function home_url( $path = '', $scheme = null ) {
	return get_home_url( null, $path, $scheme );
}