hey all -
I have a template that draws from three different weblogs, searching for the three most recent postings in a certain category. Here’s the url setup:
http://www.mysite.com/index.php/profile/category/cat_name/
and the code in the template:
{exp:weblog:entries weblog="photos|audio|videos" dynamic="on" disable="trackbacks|pagination|member_data" limit="5"}
<div id=“profile”>
{if weblog=="Photos"}
{title}
{if:elseif weblog=="Videos"}
{title}
{if:elseif weblog=="Audio"}
{title}
{/if}
</div>
{/exp:weblog:entries}
basically, what is being posted is a bunch of images right now, and 5 images show up, but they are not images that are in the correct category. Doesn’t the category get read automagically from the url?
Thanks!