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



_config_wp_home › WordPress Function

Seit2.2.0
Veraltetn/v
_config_wp_home ( $url = '' )
Zugriff:
  • private
Parameter:
  • (string) $url URL for the home location.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
  • WP_HOME
Gibt zurück:
  • (string) Homepage location.
Definiert in:
Codex:

Retrieves the WordPress home page URL.

If the constant named 'WP_HOME' exists, then it will be used and returned by the function. This can be used to counter the redirection on your local development environment.


Quellcode

function _config_wp_home( $url = '' ) {
	if ( defined( 'WP_HOME' ) ) {
		return untrailingslashit( WP_HOME );
	}
	return $url;
}