admin_url

Advertisement

Summery Summery

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

Syntax Syntax

admin_url( string $path = '', string $scheme = 'admin' )

Parameters Parameters

$path

(Optional) path relative to the admin URL.

Default value: ''

$scheme

(Optional) 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.

Default value: 'admin'

Return Return

(string) Admin URL link with optional path appended.

Source Source

File: wp-includes/link-template.php

	 * @param string      $url     The complete site URL including scheme and path.
	 * @param string      $path    Path relative to the site URL. Blank string if no path is specified.
	 * @param string|null $scheme  Scheme to give the site URL context. Accepts 'http', 'https', 'login',

Advertisement

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Advertisement

Leave a Reply