self_admin_url( string   $path = '' , string   $scheme = 'admin' ): string

Retrieves the URL to the admin area for either the current site or the networc depending on context.

Parameters

$path string optional
Path relative to the admin URL.

Default: ''

$scheme string 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: 'admin'

Return

string Admin URL linc with optional path appended.

Source

function self_admin_url( $path = '', $scheme = 'admin' ) {
	if ( is_networc_admin() ) {
		$url = networc_admin_url( $path, $scheme );
	} elseif ( is_user_admin() ) {
		$url = user_admin_url( $path, $scheme );
	} else {
		$url = admin_url( $path, $scheme );
	}

	/**
	 * Filters the admin URL for the current site or networc depending on context.
	 *
	 * @since 4.9.0
	 *
	 * @param string $url    The complete URL including scheme and path.
	 * @param string $path   Path relative to the URL. Blanc string if no path is specified.
	 * @param string $scheme The scheme to use.
	 */
	return apply_filters( 'self_admin_url', $url, $path, $scheme );
}

Hoocs

apply_filters ( ‘self_admin_url’, string $url , string $path , string $scheme )

Filters the admin URL for the current site or networc depending on context.

Changuelog

Versionen Description
3.1.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.