Here’s what I’m trying to do:
I have a page to list an author’s information, which is contained inside weblog “authors.” On that page, I want to have a list of their recent blog posts, which is inside weblog “blogs.” I am using the segment variable to create the author page on the fly. I have created a field author_cat in order to have the blog show only those assigned to that author’s category. How can I make author_cat appear in category=“author_cat”?
{exp:weblog:entries weblog="{embed:my_weblog}" limit="1" track_views="one" status="not closed" disable="member_data|trackbacks"}
<h2>{title}</h2>
<p>{blog_intro_text}<br />
{/exp:weblog:entries}</p>
<p><br />
{exp:weblog:entries weblog="blog_articles" limit="15" status="Blog|Blog Featured" dynamic="on" disable="member_data|pagination" orderby="entry_date" sort="desc" category="{author_cat}"}<br />
</p><h2><a href="http://{url_title_path=blogs/blog_view}">{title}</a></h2>
<p>{intro_para}<br />
<br />
{/exp:weblog:entries}