Codex

Function Reference/get option

Contents

Description

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.

Usage

 <?php echo get_option('show'); ?> 

Examples

Show Blog Title

Displays your blog's title in a <h1> tag.

 <h1><?php echo get_option('blogname'); ?></h1> 

Show Character Set

Displays the character set your blog is using (ex: UTF-8)

 <p>Character set: <?php echo get_option('blog_charset'); ?> </p> 

Retrieve Administrator E-mail

Retrieve the e-mail of the blog administrator, storing it in a variable.

 <?php $admin_email get_option('admin_email'); ?> 

Parameters

$show
(string) (required) Name of the option to retrieve. A list of valid default options can be found at the Option Reference.
Default: None

Related

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

How to pass parameters to tags

Go to Template Tag index