帝国CMS教程:如果文章没有缩略图,随机调用自定义缩略图
in Web with 0 comment

帝国CMS教程:如果文章没有缩略图,随机调用自定义缩略图

in Web with 0 comment
您现在的位置是:首页 > 网络生活 > Web

帝国CMS教程:如果文章没有缩略图,随机调用自定义缩略图

帝国CMS教程:如果文章没有缩略图,随机调用自定义缩略图

列表页调用方法

需开启:列表内容模板(list.var) (*) 在右侧把使用程序代码打勾! 
 

$rand=rand(1,50);
if($r[titlepic]){
$listpic='[!--titlepic--]';
}else{
$listpic='/skin/images/'.$rand.'.jpg';
}
$listtemp='<img src="'.$listpic.'">';
 
$rand=rand(1,10);
if($r[titlepic]){
        $listpic=\'[!--titlepic--]\';
}else{
        $listpic=\'/skin/news/\'.$rand.\'.jpg\';
}
$listtemp=\'
           <li><a href=\"[!--titleurl--]\" class=\"ph\"><img  src=\"\'.$listpic.\'\"></a><div><div class=\"ta\"><a href=\"[!--this.classlink--]\">[!--this.classname--]</a></div><h3><a href=\"[!--titleurl--]\">[!--title--]</a></h3>
           <p><span>[!--befrom--]</span><span></span><label>[!--newstime--]</label></p></div>
\';