Codex tools: Log in / create account
Contents |
A safe way of getting values for a named option from the options database table. If the desired option does not exist, 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'); ?>
bloginfo, bloginfo_rss, get_bloginfo, get_bloginfo_rss, wp_title, get_archives, wp_get_archives, get_calendar, get_posts, wp_list_pages, wp_dropdown_pages, wp_loginout, wp_register, query_posts, rss_enclosure