handsome主题时光机修改日期格式

image-20221208140649158

这是现在的时光机界面,日期格式比较。。。简单,并且手机端也会换行,看起来没那么好看。

可以用以下方法修改:

找到主题时光机文件博客根目录\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>

即可。

效果如图。

image-20221208141138649

最后修改:2022 年 12 月 08 日
如果觉得我的文章对你有用,请随意赞赏