home_url

FUNCTION wp-includes\link-template.php (ligne 3427) github
Retrieves the URL for the current site where the front end is accessible. Returns the 'home' option with the appropriate protocol. The protocol will be 'https' if is_ssl() evaluates to true; otherwise, it will be the same as the 'home' option. If `$scheme` is 'http' or 'https', is_ssl() is overridden.

Paramètres

Entrée :
$path = '', $scheme = null
Sortie :
@param string      $path   Optional. Path relative to the home URL. Default empty.
@param string|null $scheme Optional. Scheme to give the home URL context. Accepts
@return string Home URL link with optional path appended.

Utilisation

// Utilisation de la fonction home_url
$result = home_url($path = '', $scheme = null);

if ($result) {
    // Votre logique ici
}

Actualités

Chargement des actualités...