Wordpres template tags
Monday, September 1st, 2008A template tag is code that instructs WordPress to “do” or “get” something. There are various tags that make a template work, or display data to your visitors.
For example: <?php bloginfo(’name’); ?> will display the name of your blog. This tag is used mostly in the header, which is where you see on top of the page.
Template tags are extensive and not all of them must be used when you are creating a custom theme. You can find all of the tags at http://codex.wordpress.org/Template_Tags
When creating your custom wordpress theme just remember that the tags you include decide the fate of your end-user so include them wisely. Wouldn’t it suck if you accidentally forgot to include the categories tag? Nobody will be able to find your posts!







