self_admin_url

The timeline below displays how wordpress function self_admin_url has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.9

/**
 * Retrieves the URL to the admin area for either the current site or the network depending on context.
 *
 * @since 3.1.0
 *
 * @param string $path   Optional. Path relative to the admin URL. Default empty.
 * @param string $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.
 * @return string Admin URL link with optional path appended.
 */
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        $url = network_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 network 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. Blank string if no path is specified.
     * @param string $scheme The scheme to use.
     */
    return apply_filters('self_admin_url', $url, $path, $scheme);
}

WordPress Version: 4.6

/**
 * Retrieves the URL to the admin area for either the current site or the network depending on context.
 *
 * @since 3.1.0
 *
 * @param string $path   Optional. Path relative to the admin URL. Default empty.
 * @param string $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.
 * @return string Admin URL link with optional path appended.
 */
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        return network_admin_url($path, $scheme);
    } elseif (is_user_admin()) {
        return user_admin_url($path, $scheme);
    } else {
        return admin_url($path, $scheme);
    }
}

WordPress Version: 4.5

/**
 * Retrieve the url to the admin area for either the current site or the network depending on context.
 *
 * @since 3.1.0
 *
 * @param string $path   Optional path relative to the admin url.
 * @param 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.
 * @return string Admin url link with optional path appended.
 */
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        return network_admin_url($path, $scheme);
    } elseif (is_user_admin()) {
        return user_admin_url($path, $scheme);
    } else {
        return admin_url($path, $scheme);
    }
}

WordPress Version: 4.3

/**
 * Retrieve the url to the admin area for either the current blog or the network depending on context.
 *
 * @since 3.1.0
 *
 * @param string $path   Optional path relative to the admin url.
 * @param 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.
 * @return string Admin url link with optional path appended.
*/
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        return network_admin_url($path, $scheme);
    } elseif (is_user_admin()) {
        return user_admin_url($path, $scheme);
    } else {
        return admin_url($path, $scheme);
    }
}

WordPress Version: 3.9

/**
 * Retrieve the url to the admin area for either the current blog or the network depending on context.
 *
 * @since 3.1.0
 *
 * @param string $path Optional path relative to the admin url.
 * @param 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.
 * @return string Admin url link with optional path appended.
*/
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        return network_admin_url($path, $scheme);
    } elseif (is_user_admin()) {
        return user_admin_url($path, $scheme);
    } else {
        return admin_url($path, $scheme);
    }
}

WordPress Version: 3.7

/**
 * Retrieve the url to the admin area for either the current blog or the network depending on context.
 *
 * @package WordPress
 * @since 3.1.0
 *
 * @param string $path Optional path relative to the admin url.
 * @param 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.
 * @return string Admin url link with optional path appended.
*/
function self_admin_url($path = '', $scheme = 'admin')
{
    if (is_network_admin()) {
        return network_admin_url($path, $scheme);
    } elseif (is_user_admin()) {
        return user_admin_url($path, $scheme);
    } else {
        return admin_url($path, $scheme);
    }
}