Happy holiday, everyone! I’m trying to find a way to display information from the two weblogs. In a site index I see this blocks of code:
{exp:weblog:category_heading weblog="{my_weblog}"}
[…]
{/exp:weblog:category_heading}and
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="5" disable="member_data|trackbacks"}
[…]
{/exp:weblog:entries}Variable my_weblog represent my first weblog. Lets call it “weblog1”. But I’ve got “weblog2” that I wish to be shown here as well. What should I do? Define additional variable “my_weblog2” and duplicate two quoting blocks of code like:
{exp:weblog:category_heading weblog="{my_weblog}"}
[…]
{/exp:weblog:category_heading}
{exp:weblog:category_heading weblog="{my_weblog2}"}
[…]
{/exp:weblog:category_heading}or there is another way like:
{exp:weblog:category_heading weblog="{my_weblog}{my_weblog2}"}
[…]
{/exp:weblog:category_heading}So far don’t have a clue. :sick: