DedeCMS默认发布文章后更新主页,列表,和上下页。如何实现文档编辑保存后也能自动更新主页,这样不用每次去手动生成。
1、开启更新
进入后台-系统-基本参数-性能选项,找到“发表文章后马上更新”这里都选择“是”,或者根据你需求开启。
2、修改后台编辑文档对应的PHP文件
- 普通文章模型 /dede/article_edit.php
- 图片集模型 /dede/album_edit.php
- 软件模型 /dede/soft_edit.php
- 其他模型 /dede/archives_edit.php
选择对应的模型修改:
例如:普通文章模型的,打开 /dede/article_edit.php 找到
$wintitle
在它的上面加入
$arcID = $id; $msg = "<p style='line-height:36px;height:36px'>{$msg}</p>".GetUpdateTest();