This question may be related to a resolved thread.
I’ve looked at the documentation, and scoured the forum, but I can’t seem to resolve my issue. I’m using MSM and the two site short names are “blog” and “default_site”
From default_site, I want to call a template from blog. This is what I have:
{embed="blog:_widgets/_listing_ul" channel="blog" dynamic="no" limit="2" status="published|open" sort="desc" orderby="blog_entries_publish_date"}In the blog template _widgets/_listing_ul I have:
<ul>
{exp:channel:entries
channel="{embed:channel}"
dynamic="{embed:dynamic}"
limit="{embed:limit}"
status="{embed:status}"
sort="{embed:sort}"
orderby="{embed:orderby}"
}
<li id="{url_title}" class="article-title"><a href="http://{lv_url_blog}/blog/{url_title}">{title}</a></li>
{/exp:channel:entries}
</ul>Is this choking because I’m passing parameters through the embed? On the blog side, I embedded this same template, and sure enough I get my unordered list. I just can’t seem to get it to appear on default_site.
Thanks, Vaughn