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 > ';

20240619162140.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>

20240619162345.png
注意:格式需要与设置评论的设置格式一致,否则无法识别出秒是多少,直接显示00.

评论区
头像