dedecms實(shí)現(xiàn)大圖showphoto.htm輸出圖集內(nèi)容簡介方法,需要的朋友可以參考下
這種方法在DEDE很多地方都很實(shí)用。
打開showphoto.php,找到
代碼如下:
require_once(DEDETEMPLATE.'/plus/showphoto.htm');
exit();
并在其上方添加:
代碼如下:
//------------------下為代碼------------------//
//圖集大圖模式顯示圖集內(nèi)容介紹
$arcRow = $dsql->GetOne("SELECT body FROM `dede_addonimages` WHERE aid='{$aid}'");
if(is_array($arcRow))
{
$arcbody = $arcRow['body'];
}
然后打開showphoto.htm,在其中合適的地方添加代碼:
代碼如下:
<?
php echo $arcbody;
?>
刷新頁面,顯示圖集內(nèi)容(簡介)