For a Blog, I am using the dynamic folders (http://www.couchcms.com/docs/miscellane ... lders.html) to categorize blog posts in different groups.
On the sidebar of each blog post and and list view, that shows all available posts, I would like to show the available folders. The names and links are displaying correctly, however, the link always leads back to the general list view and shows all available posts. It does not filter the posts from only the selected category:
Would appreciate your help how to correctly list the posts within each dynamic folder.
Secondly, is it possible to show the number of posts within each dynamic folder (e.g. Title (5) )?
On the sidebar of each blog post and and list view, that shows all available posts, I would like to show the available folders. The names and links are displaying correctly, however, the link always leads back to the general list view and shows all available posts. It does not filter the posts from only the selected category:
- Code: Select all
<h4>Categories</h4>
<ul>
<cms:folders masterpage='blog.php' folder=k_folder_name limit='4' paginate='1' >
<li><a href="<cms:show k_folder_link />"><cms:show k_folder_title /></a></li>
</cms:folders>
</ul>
Would appreciate your help how to correctly list the posts within each dynamic folder.
Secondly, is it possible to show the number of posts within each dynamic folder (e.g. Title (5) )?