名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
找到include网站文件夹下面的arc.archives.class.php网站文件,打开,记得不能用记事本打开,可以在dedecms网站程序网站的后台网站文件管理里面打开或者notepad 等软件打开。
找到下面这段相关具体代码如下:
//设置全局系统环境变量
$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];
}
//完成附加表信息读取
unset($row);
大概在第204行。
然后在
@SetSysEnv($this->Fields['typeid'],$this->Fields['typename'],$this->Fields['id'],$this->Fields['title'],'archives');
下面添加:
$this->Fields['body'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦程序58' ",$this->Fields['body']);
$this->Fields['imgurls'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦程序58' ",$this->Fields['imgurls']);
$this->Fields['introduce'] = str_ireplace("<img " ,"<img alt='".$this->Fields['title'].",织梦程序58' ",$this->Fields['introduce']);
其中的“织梦程序58”可以更换成你想要更换的文字。
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序免登录接口dedecms网站程序自动登录相关具体代码如下