为了增加网站的内链,要在网站模板中调用标签云,具体方法如下:
{dede:tag row='45' getall='1' sort='hot'}
<a href='[field:link/]' title="[field:tag /]" style="[field:total runphp=yes]@me=getTagStyle();[/field:total]">[field:tag /]</a>
{/dede:tag}
给标签加上随机的大小和颜色,在/include/common.func.php中加入如下函数:
function getTagStyle()
{
$minFontSize=10; //最小字体大小,可根据需要自行更改
$maxFontSize=20; //最大字体大小,可根据需要自行更改
return 'font-size:'.($minFontSize+lcg_value()*
(abs($maxFontSize-$minFontSize))).'px;color:#'.
dechex(rand(0,255)).dechex(rand(0,196))
.dechex(rand(0,255));
}
展示效果如下: