My wordpress template do not support tag description. I have installed a plugin Rich Text Tags which allows me to create html description for tags. I want that whenever a tag is clicked its description shows before the list of posts. thanks
If you have a tag template (tag.php), open it and insert this after the heading: <?php echo tag_description(); ?> For the TwentyTen theme, I would code it like this: <h1 class="page-title"><?php printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1> <p class="tag-description"><?php echo tag_description(); ?></p> Code (markup):
The TwentyTen tag template might work if your theme is similar. Put the above code in it and try it out. If that fails, post your category template here and I will try to make a tag template from it.
Thanks anyways. But I need a very different theme because of a rare niche. twentyten do not work for me. Now I will try to find out the the similar code in my theme to solve the problem. However I tried earlier but failed.
So it probably doesn't have a 404 template either. If it's a Wordpress 3 theme, the main file (index.php) is the next closest. But I would be looking for a new theme.
Yes, I have changed the theme. It didn't contained any tag term in archives, index, archive, 404, or any other file.