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



_config_wp_siteurl › WordPress Function

Seit2.2.0
Veraltetn/v
_config_wp_siteurl ( $url = '' )
Zugriff:
  • private
Parameter:
  • (string) $url URL to set the WordPress site location.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
  • WP_SITEURL
Gibt zurück:
  • (string) The WordPress site URL.
Definiert in:
Codex:

Retrieves the WordPress site URL.

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.


Quellcode

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