I have a page that displays a list of categories, when a category is clicked it goes to a new page that lists related entries to that category.
This all work nicely but I would like to display the Category Title on the related entries page and I’m not sure the best way to achieve this?
Thanks
Jemes
List of Categories
{exp:channel:categories channel="web_links"}
<a href="http://{path=web-links/index}">{category_name}</a>
{/exp:channel:categories}List of Related Entries
{exp:channel:entries channel="web_links" orderby="date" cache="no" refresh="120" paginate="bottom"}
<h1>{title}</h1>
{web_links_description}
{/exp:channel:entries}