进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。 打开/dede/templets/article_edit.htm文件 找到: ?php $nowtime = GetDat
进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。
打开/dede/templets/article_edit.htm文件
找到:
<?php
$nowtime = GetDateTimeMk($arcRow["pubdate"]);
echo "<input name=\"pubdate\" value=\"$nowtime\" type=\"text\" id=\"pubdate\" style=\"width:200px\">";
?>
改成:
<?php
if($arcRow["arcrank"]!=-1){
$nowtime = GetDateTimeMk($arcRow["pubdate"]);
echo "<input name=\"pubdate\" value=\"$nowtime\" type=\"text\" id=\"pubdate\" style=\"width:200px\">";
}else{
$nowtime =date('Y-m-d H:i:s');
echo "<input name=\"pubdate\" value=\"$nowtime\" type=\"text\" id=\"pubdate\" style=\"width:200px\">";
};
?>
网站源码网
织梦把未审核文章的时间自动设定为当前时间
最新VIP资源
猜你喜欢
- 织梦dedecms常用函数整理汇总 2021-04-20
- 织梦dedecms序号标签autoindex使用详解 2020-06-28
- 织梦dedecms采集无法显示选择其他内容模型的解决办法 2021-05-29
- 织梦会员中心模板调用某个栏目名和栏目下文档的办法 2021-03-29
- 织梦dedecms三级栏目channelartlist支持currentsty 2021-08-09
- 织梦dedecms会员中心收藏夹无法删除收藏的文章 2021-06-04
- DedeCms错误警告,连接数据库失败 2020-08-05
- 织梦DEDECMS自定义表单SQL命令行批量删除垃圾留言 2021-07-28
- 织梦dedecms列表页调用当前页码代码 2021-06-04
- 织梦dedecms搜索页面调用内容模式自定义字段的方法 2021-06-04