Hello,
I have a sub navigation which is essentially just a list of articles.
This is my code:
<ul>
{exp:query sql="SELECT blog_title, blog_name FROM exp_weblogs"}
{exp:weblog:entries weblog="{blog_title}" dynamic="off"}
<li><a href="http://{path=/bch/{url_title}}">{title}</a></li>
{/exp:weblog:entries}
{/exp:query}
</ul>Unfortunately this lists EVERY article from EVERY section. I would just like it to restrict the list to articles belonging to the same section as the current article.
I hope that makes sense.
Thanks