Create a tag page on your WordPress blog

January 7, 2009 · Print This Article

The problem of displaying tags in your sidebar is that it isn’t really readable, which caused many wordpress bloggers to get rid of tags.

How to create a tage page to display your wordpress blog tags in a more readable manner?

To create your tag page, the first thing to do is to create a page template.

Paste the following code in it if you don’t know how to create one:


<?php
/*
Template Name: Tags
*/

<h2>All tags</h2>
wp_tag_cloud('number=0');

?>

That’s simple as that! The number=0 parameter specifies that you want to display all tags.


Related articles:

Your choice for site templates and wordpress themes

Comments

Got something to say?

You must be logged in to post a comment.