I need to set up Quick Links modules throughout my site where the client would be able to enter in a quick link title and a quick link url and select a category so the quick link only shows up on certain pages. I’ve set up the ‘channel’, ‘channel field group’, ‘custom fields’, ‘categories, etc. but I am having a hard time figuring out how to write the code to display the quick links by category.. here’s what I have (which isn’t working):
<ul>
{exp:channel:entries channel="quick-links" limit="6" dynamic="off"}
{categories:home}
<li><a href="http://{quick-links-url}">{quick-links-title}</a></li>
{/categories}
{/exp:channel:entries}
</ul>Thanks for your help!