Hello, I’m creating a blog using EE and have a sidebar that lists all the categories for a specified channel (in this case, channel=‘blog’). The link I’m creating for each category has an href like this:
http://mydomain.com/blog/category/2
So template group blog, category is the template, and 2 is the category id. In the category template I have the exp tag:
{exp:channel:entries channel='blog' category='{segment_3}' orderby='date' sort='desc' limit='5' paginate='bottom'}
...
{/exp:channel:entries}The issue I’m having is that nothing inside the exp block is being parsed, and no entries are showing up. Anything obvious stick out that I might be doing wrong? Also, the exact same exp tag is being used on my blog index template (sans the category attribute) and it’s working perfectly. So, I’m kind of at a loss as to what is going on here. Thanks for any help!
Greg