实现大图showphoto.htm输出图集内容简介方法

来源:互联网 发布:驱魔少年网络大电影 编辑:程序博客网 时间:2024/04/19 18:06
实现大图showphoto.htm输出图集内容简介方法


这种方法在DEDE很多地方都很实用。

打开showphoto.php,找到





require_once(DEDETEMPLATE.'/plus/showphoto.htm');

exit();



并在其上方添加:





//------------------下为代码------------------//

//图集大图模式显示图集内容介绍

$arcRow = $dsql->GetOne("SELECT body FROM `dede_addonimages` WHERE aid='{$aid}'");

if(is_array($arcRow))

{

$arcbody = $arcRow['body'];

}





然后打开showphoto.htm,在其中合适的地方添加代码:







php echo $arcbody;

?>



刷新页面,dedecms显示图集内容(简介)


DedeCMS首页arclist分页arcpagelist标签实例解析
0 0