Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use WP_SITEURL instead.

_config_wp_siteurl( string $url = '' )

Retrieve the WordPress site URL.


Description Description

If the constant named ‘WP_SITEURL’ is defined, then the value in that constant will always be returned. This can be used for debugging a site on your localhost while not having to change the database to your URL.

See also See also


Top ↑

Parameters Parameters

$url

(string) (Optional) URL to set the WordPress site location.

Default value: ''


Top ↑

Return Return

(string) The WordPress Site URL.


Top ↑

Source Source

File: wp-includes/functions.php

function _config_wp_siteurl( $url = '' ) {
	if ( defined( 'WP_SITEURL' ) ) {
		return untrailingslashit( WP_SITEURL );
	}
	return $url;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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