I would like to use Category URL Titles in links to construct human-friendly URLs on my site. I’ve set the Category URL Indicator to “c”.
I have a page with the following URL:
http://www.my-site.com/template/c/category-name
And below is the code in the template:
{exp:channel:category_heading channel="channel-name"}
<h1>{category_name}</h1>
{/exp:channel:category_heading}
<ul>
{exp:channel:entries channel="channel-name"}
<li>{title}</li>
{/exp:channel:entries}
</ul>The category name displays correctly, but I can’t get any entries to display. If I add in the dynamic=“no” parameter I can see all of my entries. What did I miss here? Seems like this is simple, out-of-the-box functionality.