WordPress
get_option ()
Recherche…
Introduction
Récupère une valeur d'option basée sur un nom d'option.
Syntaxe
- get_option (option $, $ default)
Paramètres
Paramètre | Détails |
---|---|
option $ | (chaîne) Nom de l'option à récupérer. Attendu pour ne pas être SQL-échappé. |
$ par défaut | (mixed) (Facultatif) Valeur par défaut à renvoyer si l'option n'existe pas. |
Remarques
Liste des arguments pour l'option $
- 'admin_email'
- "blogname"
- 'blogdescription'
- 'blog_charset'
- 'format de date'
- 'default_category'
- 'maison'
- 'URL du site'
- 'modèle'
- 'start_of_week'
- 'upload_path'
- 'users_can_register'
- 'posts_per_page'
- 'posts_per_rss'
Afficher le titre du blog
Code
<h1><?php echo get_option( 'blogname' ); ?></h1>
Sortie
Nom du blog dans le style H1
Afficher le jeu de caractères
Code
<p><?php echo esc_html( sprintf( __( 'Character set: %s', 'textdomain' ), get_option( 'blog_charset' ) ) ); ?></p>
Sortie
Jeu de caractères: UTF-8
Gestion des options non existantes
Code
<?php echo get_option( 'something_bla_bla_bla' ); ?>
Sortie
faux
Code
<?php echo get_option( 'something_bla_bla_bla', 'Oh no!' ); ?>
Sortie
Oh non!
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow