WordPress
home_url ()
Recherche…
Syntaxe
- home_url ($ path, $ scheme);
Paramètres
Paramètre | Détails |
---|---|
$ path | ( Chaîne , Facultatif ) Pour ajouter plus de segment après l'URL d'origine. |
$ schéma | ( String , Facultatif ) Schéma pour donner le contexte de l'URL à la maison. Accepte 'http', 'https', 'relatif', 'repos' ou null. |
Obtenir l'URL de la maison
home_url()
est utilisé pour récupérer l'URL d'origine du site.
<?php echo esc_url( home_url( '/' ) ) ); ?>
Sortie
http://www.example.com
URL du site
Renvoie l'option 'site_url' avec le protocole approprié ( https: //)
<?php echo site_url(); ?>
Sortie
http://www.example.com
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow