Codex tools: Log in
Languages: English • Tiếng Việt • (Add your language)
Contents |
A safe way of getting values for a named option from the options database table. If the desired option does not exist, or no value is associated with it, FALSE will be returned.
<?php echo get_option('show'); ?>
Displays your blog's title in a <h1> tag.
<h1><?php echo get_option('blogname'); ?></h1>
Displays the character set your blog is using (ex: UTF-8)
<p>Character set: <?php echo get_option('blog_charset'); ?> </p>
Retrieve the e-mail of the blog administrator, storing it in a variable.
<?php $admin_email = get_option('admin_email'); ?>