全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
dedecms自动把未审核文章的时间设定为当前时间
POST TIME:2020-04-09 01:20
关键字描述:
自动把未审核文章的时间设定为当前时间
功能:进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。
修改dede/templets/article_edit.htm页面
找
<td width="90"> 发布时间:</td>
<td width="381">
把下面的
<?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&;>";
};
?>
自动把未审核文章的时间设定为当前时间
功能:进入编辑文章时候,对于未审核的文章,自动把发布时间框里显示当前系统时间,如果文章已经审核过,则发布时间是不变。
修改dede/templets/article_edit.htm页面
找
<td width="90"> 发布时间:</td>
<td width="381">
把下面的
<?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&;>";
};
?>
Copyright © 2003-2016
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278