handsome主题时光机修改日期格式
这是现在的时光机界面,日期格式比较。。。简单,并且手机端也会换行,看起来没那么好看。
可以用以下方法修改:
找到主题时光机文件博客根目录\usr\themes\handsome\component\say.php
找到以下代码
<span class="text-muted m-l-sm pull-right"
datetime="<?php $comments->date('c'); ?>"><a href="#<?php $comments->theId()?>">
<?php echo Utils::formatDate($comments, $comments->created, $options->dateFormat); ?></a>
</span>
替换为
<span class="text-muted m-l-sm pull-right"
datetime="<?php $comments->date('c'); ?>"><a href="#<?php $comments->theId()?>">
<?php echo date("Y年m月d日 H:i:s",$comments->created); ?></a>
</span>
即可。
效果如图。
2 条评论
后台可以修改的
之前我也在想这个事。