You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
721 B

{if $wp_relations|@count}
{if $wp_singlelist}
<ul>
{foreach from=$wp_relations.singlelist item=object}
<li>{object_link type=$object.type id=$object.object}</li>
{/foreach}
</ul>
{else}
<ul>
{foreach from=$wp_relations key=label item=list}
<li>
{$label|escape}
<ul>
{foreach from=$list item=object}
<li>{object_link type=$object.type id=$object.object}</li>
{/foreach}
</ul>
</li>
{/foreach}
</ul>
{/if}
{else}
{tr}{$wp_emptymsg}{/tr}
{/if}