WordPress’ Bloginfo Explained

One of the most useful template tags you’ll use in WordPress is bloginfo. As the name suggests, it lets you dynamically show information about your blog. That’s the important bit. Your blog. So when you’re designing a theme for public release, you can accommodate for all sort of different situations.

So what can I use bloginfo for?

All sorts of different things. Here’s the complete list, courtesy of the codex. It doesn’t make too much sense on it’s own if you don’t already know what you’re doing, so I’ve added in a little explanation below each.

admin_email = admin@example

Email of the administrator.

atom_url = http://example/home/feed/atom

Atom feed URL

charset = UTF-8

The character ecoding system (not particularily interesting – used in the ).

comments_atom_url = http://example/home/comments/feed/atom

Atom feed for all comments on the blog.

comments_rss2_url = http://example/home/comments/feed

RSS feed for all comments on the blog.

description = Just another WordPress blog

The description (or tagline) of your blog, as set under ‘Settings’ in the backend.

url = http://example/home

Homepage of the blog.

html_type = text/html

Type of HTML used (again, not too interesting :P).

language = en-GB

Language used on the blog.

name = Testpilot

Name or title of your blog, as set under ‘Settings’ in the backend.

pingback_url = http://example/home/wp/xmlrpc.php

URL to which pingbacks should be sent.

rdf_url = http://example/home/feed/rdf

a general method for conceptual description or modeling of information that is implemented in web resources; using a variety of syntax formats.

via Wikipedia

rss2_url = http://example/home/feed

RSS feed for the blog.

rss_url = http://example/home/feed/rss

URL of the RSS feed.

siteurl = http://example/home

URL of the site.

stylesheet_directory = http://example/home/wp/wp-content/themes/largo

Directory where the style.css file is located, should be used for child theme.

stylesheet_url = http://example/home/wp/wp-content/themes/largo/style.css

URL of the stylesheet.

template_directory = http://example/home/wp/wp-content/themes/largo

Directory of your theme.

template_url = http://example/home/wp/wp-content/themes/largo

URL of the theme.

text_direction = ltr

Direction in which the text reads (ie left to right).

version = 2.8.5

Version of WordPress the blog is running.

wpurl = http://example/home/wp

URL of the WordPress installation (sometimes different to where the homepage is).

When should bloginfo be used?

Good question. It should be used for ‘stuff’ that is unique to your installation of WordPress (for example the title or homepage). Let’s say we want to send a link to the homepage. On your installation it’s at /word/, but on mine it’s at /press/! You want to share the theme you’re using with me, so obviously I’m going to have to change all the links to the homepage, right? Not true. Using the siteurl parameter, the homepage URL can be dynamically generated. So instead of links reading:

<a href="/word/">Homepage</a>

They should be:

&lt;a href="&lt;?php bloginfo('siteurl'); ?&gt;Homepage&lt;/a&gt;</code>

That format applies to all uses of bloginfo :

&lt;?php bloginfo('parameter_here'); ?&gt;</code>

Further examples

Stylesheet URL. On my installation it’s /press/wp-content/themes/Biblioteca/style.css but on yours it’s /word/wordpress-installed-in-a-different-directory-to-the-homepage/wp-content/themes/Biblioteca/style.css. Bloginfo to the rescue again – instead of:

&lt;link rel="stylesheet" href="/press/wp-content/themes/Biblioteca/style.css" type="text/css" media="screen,projection" /&gt;

You can dynamically generate the stylesheet URL:

&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_url'); ?&gt;" type="text/css" media="screen,projection" /&gt;

The final example I’ll do today is the title. On my blog it’s Press! but on yours it’s Word! Using the name parameter we can dynamically generate the title:

&lt;h2&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/h2&gt;

And with that, we’re done. Enjoy your new-found knowledge!

Have you noticed WPShout loads super-fast? That's because the site is running on the super-amazing WPEngine hosting.

Fed up of shared hosts that don't work? Give them a try.

About the author

Hello, I'm Alex! WPShout is my collection of WordPress tutorials which I started 4 years ago, just before my 16th birthday. If you need someone to make you WordPress screencasts or documentation for your product or service, get in touch — I'll be able to help you out. You should also follow me on Twitter :)

3 Comments

  • Really useful list and explanations Alex.

    One thing I would add though is that if you aren’t designing a theme to be used by other people, where these things are constants as opposed to variables, it’s better to hard code them.
    .-= Epic Alex´s last blog ..5 Sites That Will Pay You For Your Coding Knowledge =-.

    • Alex Denning

      Tis true although if you’re using some sort of caching plugin then that isn’t a problem. Even if you’re not it’s a negligible effect on load times.

  • ‘stylesheet_directory’ and ‘template_directory’ point to different places if you use a child theme. ‘template_directory’ gives you the path to the parent theme, ‘stylesheet_directory’ to the child. Lousy names, in my opinion.

    ‘charset’ is useful for forms: You should use it for the accept-charset attribute to avoid mixed encodings.