入了大量标签,但是现在有的标签是空匹配,这样访问标签页就没有内容,有什么办法在没有标签对应内容时,能随机调用其他文章,这样来防止空页面。
TAG列表:
{related module=news tag=$tag.tags page=1 pagesize=10 urlrule=$urlrule}
<li><a href="{$t.url}">{$t.title}</a></li>
{/related}
没有内容时随机调用:
{if !$total}
{module module=news order=rand num=10 cache=1}
<li><a href="{$t.url}">{$t.title}</a></li>
{/module}
{/if}
调用随机模板
<?php $r = "top".rand(1,3).".html";?>
{template $r}
随机调用1-12的数字
{rand(1,12)}