typecho cuteen主题设置首页文章和内页文章发布时间的格式问题

喜欢显示年月日时分秒的格式,所以自己美化了一下,其实很简单,就是把主题中的Y年m月d日,修改成Y年m月d日 H:i:s的格式即可,主要是位置难找而已。首页的位置:

Cuteen\core\Context.php:

代码如下:

324: $str .= "<svg class='icon me-1' aria-hidden='true'><use xlink:href='#shijian'></use></svg>";
325 $str .= date("Y年m月d日", $ctx->date->timeStamp) . '</div > ';

展示图如下:
20240624112308.png

文章页面的位置:Cuteen\include\hero.php:

代码如下:

48<svg class="icon" aria-hidden="true">
49: <use xlink:href="#shijian"></use>
50</svg>
51<span><?php $this->date('Y年m月d日'); ?></span>

展示图如下:
20240624112338.png
注意:还是有不兼容的地方的,那就是发表的时间是正常的,只要重新更改发布就会显示00秒,所以我去掉了,希望有好的代码出现来解决。

评论区
头像