While we're all on this topic of categories in the tutorial, I noticed that clicking on "Clients" gave me just that category, but if I click on an "Uncategorized" link, I got all the posts not just the uncategorized. Related to that, I also thought I'd add an entry to the end of the category list as "Others" for the uncategorized (is it a "z" or an "s"?). So I just added an <li> tag outside the loop:
Although the result looks great, it unfortunately selects all posts. How could I just select just the uncategorized?
- Code: Select all
<cms:folders masterpage='blog.php' >
<li><a href="<cms:show k_folder_link />"><cms:show k_folder_title /></a></li>
</cms:folders >
<li><a href="<cms:show k_template_link />">Others</a></li>
Although the result looks great, it unfortunately selects all posts. How could I just select just the uncategorized?