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



admin_url › WordPress Function

Seit2.6.0
Veraltetn/v
admin_url ( $path = '', $scheme = 'admin' )
Parameter: (2)
  • (string) $path Optional. Path relative to the admin URL. Default empty.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $scheme The scheme to use. Default is 'admin', which obeys force_ssl_admin() and is_ssl(). 'http' or 'https' can be passed to force those schemes.
    Erforderlich: Nein
    Standard: 'admin'
Gibt zurück:
  • (string) Admin URL link with optional path appended.
Definiert in:
Codex:

Retrieves the URL to the admin area for the current site.



Quellcode

function admin_url( $path = '', $scheme = 'admin' ) {
	return get_admin_url( null, $path, $scheme );
}