On a weblog entry page, I’m trying to list other entries by the same author as the one that’s being viewed. However I cannot seem to be able to nest weblog tags in a way that works.
I need to accomplish something like this:
{exp:weblog:entries weblog="my_weblog"}
<h2>{title}</h2>
{body}
<hr/>
<h2>Other entries by {author}</h2>
<ul>
{exp:weblog:entries weblog="my_weblog" author_id="{author_id}" limit="5"}
<li>{title}</li>
{/exp:weblog:entries}
</ul>
{/exp:weblog:entries}
Thanks!
