Template Tags

The original list of links to these tags is located at WordPress.org. This is a condensed list I maintain that eliminates all the deprecated tags and stores many handy examples I've collected along the way. I like the whole accordion "quick access" approach too.

If you have some really useful code that includes any of these tags, and you're willing to share it, contact me. I'll list it here and give your site a plug! :)

P.S. For the moment, I'm storing some handy functions here too, although, those are not technically template tags. Eventually they'll get their own page as well.

Handy Functions

is_user_logged_in

I use this function on the My Account page to check whether you're logged into the blog or not. Since your user account logs you in to two different accounts at once, it's handy to know if the blog login failed. Here's (basically) how I do it.

<?php
global $user_identity;
if (is_user_logged_in()) {
print "<h2>Welcome Back " . $user_identity . "!</h2>";
} else {
print "<h2>You are not logged-in to the blog.</h2>";
} ?>

And here it is working in action. If you're logged-in right now, you *should* see the welcome back message.


You are not logged-in to the blog.


More info at WordPress.org » is_user_logged_in

Author Tags

the_author

This tag will return the display name of the author who wrote the given blog entry or page. This tag really only makes sense for blogs that have multiple authors that write content. There are no arguments for the tag - you cannot tell it to display the author's first name or nickname. It will only retrieve and display the display name.

<?php the_author(); ?>

Returns Suzanne, 1) because I am the author of this page and 2) because that's the display name I specified in my profile.

More info at WordPress.org » the_author

the_author_description

More info at WordPress.org » the_author_description

the_author_login

More info at WordPress.org » the_author_login

the_author_firstname

More info at WordPress.org » the_author_firstname

the_author_lastname

More info at WordPress.org » the_author_lastname

the_author_nickname

More info at WordPress.org » the_author_nickname

the_author_ID

More info at WordPress.org » the_author_ID

the_author_email

More info at WordPress.org » the_author_email

the_author_url

More info at WordPress.org » the_author_url

the_author_link

More info at WordPress.org » the_author_link

the_author_aim

More info at WordPress.org » the_author_aim

the_author_yim

More info at WordPress.org » the_author_yim

the_author_posts

More info at WordPress.org » the_author_posts

the_author_posts_link

More info at WordPress.org » the_author_posts_link

wp_list_authors

More info at WordPress.org » wp_list_authors

Category Tags

the_category

More info at WordPress.org » the_category

the_category_rss

More info at WordPress.org » the_category_rss

single_cat_title

More info at WordPress.org » single_cat_title

category_description

More info at WordPress.org » category_description

wp_dropdown_categories

More info at WordPress.org » wp_dropdown_categories

wp_list_categories

More info at WordPress.org » wp_list_categories

in_category

More info at WordPress.org » in_category

get_category_parents

More info at WordPress.org » get_category_parents

get_the_category

More info at WordPress.org » get_the_category

get_category_link

More info at WordPress.org » get_category_link

Comment Tags

comments_number

More info at WordPress.org » comments_number

comments_link

More info at WordPress.org » comments_link

comments_rss_link

More info at WordPress.org » comments_rss_link

comments_popup_script

More info at WordPress.org » comments_popup_script

comments_popup_link

More info at WordPress.org » comments_popup_link

comment_ID

More info at WordPress.org » comment_ID

comment_author

More info at WordPress.org » comment_author

comment_author_IP

More info at WordPress.org » comment_author_IP

comment_author_email

More info at WordPress.org » comment_author_email

comment_author_url

More info at WordPress.org » comment_author_url

comment_author_email_link

More info at WordPress.org » comment_author_email_link

comment_author_url_link

More info at WordPress.org » comment_author_url_link

comment_author_link

More info at WordPress.org » comment_author_link

comment_type

More info at WordPress.org » comment_type

comment_text

More info at WordPress.org » comment_text

comment_excerpt

More info at WordPress.org » comment_excerpt

comment_date

More info at WordPress.org » comment_date

comment_time

More info at WordPress.org » comment_time

comment_author_rss

More info at WordPress.org » comment_author_rss

comment_text_rss

More info at WordPress.org » comment_text_rss

comment_link_rss

More info at WordPress.org » comment_link_rss

permalink_comments_rss

More info at WordPress.org » permalink_comments_rss

Date & Time Tags

the_date_xml

More info at WordPress.org » the_date_xml

the_date

More info at WordPress.org » the_date

the_time

More info at WordPress.org » the_time

the_modified_date

More info at WordPress.org » the_modified_date

the_modified_time

More info at WordPress.org » the_modified_time

get_the_time

More info at WordPress.org » get_the_time

single_month_title

More info at WordPress.org » single_month_title

get_calendar

More info at WordPress.org » get_calendar

the_weekday

More info at WordPress.org » the_weekday

the_weekday_date

More info at WordPress.org » the_weekday_date

General Info Tags

bloginfo

More info at WordPress.org » bloginfo

bloginfo_rss

More info at WordPress.org » bloginfo_rss

get_bloginfo

More info at WordPress.org » get_bloginfo

get_bloginfo_rss

More info at WordPress.org » get_bloginfo_rss

wp_title

More info at WordPress.org » wp_title

wp_get_archives

More info at WordPress.org » wp_get_archives

get_calendar

More info at WordPress.org » get_calendar

get_posts

More info at WordPress.org » get_posts

wp_list_pages

More info at WordPress.org » wp_list_pages

wp_dropdown_pages

More info at WordPress.org » wp_dropdown_pages

wp_loginout

More info at WordPress.org » wp_loginout

wp_register

More info at WordPress.org » wp_register

query_posts

More info at WordPress.org » query_posts

rss_enclosure

More info at WordPress.org » rss_enclosure

wp_tag_cloud

More info at WordPress.org » wp_tag_cloud

the_search_query

More info at WordPress.org » the_search_query

Link Tags

edit_post_link

More info at WordPress.org » edit_post_link

edit_comment_link

More info at WordPress.org » edit_comment_link

wp_link_pages

More info at WordPress.org » wp_link_pages

get_year_link

More info at WordPress.org » get_year_link

get_month_link

More info at WordPress.org » get_month_link

get_day_link

More info at WordPress.org » get_day_link

previous_posts_link

More info at WordPress.org » previous_posts_link

next_posts_link

More info at WordPress.org » next_posts_link

Links Manager Tags

wp_list_bookmarks

More info at WordPress.org » wp_list_bookmarks

Permalink Tags

permalink_anchor

More info at WordPress.org » permalink_anchor

get_permalink

More info at WordPress.org » get_permalink

the_permalink

More info at WordPress.org » the_permalink

permalink_single_rss

More info at WordPress.org » permalink_single_rss

Post Tags

the_ID

More info at WordPress.org » the_ID

the_title

More info at WordPress.org » the_title

the_title_attribute

More info at WordPress.org » the_title_attribute

single_post_title

More info at WordPress.org » single_post_title

the_title_rss

More info at WordPress.org » the_title_rss

the_content

More info at WordPress.org » the_content

the_content_rss

More info at WordPress.org » the_content_rss

the_excerpt

More info at WordPress.org » the_excerpt

the_excerpt_rss

More info at WordPress.org » the_excerpt_rss

previous_post_link

More info at WordPress.org » previous_post_link

next_post_link

More info at WordPress.org » next_post_link

posts_nav_link

More info at WordPress.org » posts_nav_link

the_meta

More info at WordPress.org » the_meta

the_tags

More info at WordPress.org » the_tags

wp_count_posts

More info at WordPress.org » wp_count_posts

Tag Tags

wp_tag_cloud

More info at WordPress.org » wp_tag_cloud

the_tags

More info at WordPress.org » the_tags

get_the_tags

More info at WordPress.org » get_the_tags

get_the_tag_list

More info at WordPress.org » get_the_tag_list

single_tag_title

More info at WordPress.org » single_tag_title

Trackback Tags

trackback_url

More info at WordPress.org » trackback_url

trackback_rdf

More info at WordPress.org » trackback_rdf