修改e/class/t_functions.php 不规则排列,直接显示链接地址. 演示见: http://www.jztop.com 友情链接栏.
//------------------友情链接 function sys_GetSitelink($line,$num,$enews=0) {global $empire,$public_r; //图片 if($enews==1) {$a=" and lpic<>''";} //文字 elseif($enews==2) {$a=" and lpic=''";} else {$a="";} $sql=$empire->query("select * from phome_enewslink where checked=1".$a." order by myorder,lid limit ".$num); //输出 $i=0; while($r=$empire->fetch($sql)) { $i++; if(($i-1)%$line==0||$i==1) {$class_text.="";} //文字 if(empty($r[lpic])) { $logo="<a href='$r[lurl]' title='".$r[lname]."' target=".$r[target].">".$r[lname]."</a> "; } //图片 else { $logo="<a href='".$public_r[newsurl]."e/public/GotoSite?lid=".$r[lid]."&url=".urlencode($r[lurl])."' target=".$r[target]."><img src='".$r[lpic]."' alt='".$r[lname]."' border=0 width='".$r[width]."' height='".$r[height]."'></a> "; } $class_text.="".$logo.""; //分割 if($i%$line==0&&$i<>1) {$class_text.="";} } if($i<>0) { $table="";$table1=""; $ys=$line-$i%$line; for($j=0;$j<$ys;$j++) { $class_text.=""; if($ys==($j-1)) {$class_text.="";} } } $text=$table.$class_text.$table1; echo"$text"; } |
|