V3的可以参考以前的文章https://madlax.pw/2023/06/452.html V4的一直没见有人发。最近看到作者提示了一下,找时间弄出来了。
修改/content/legacy/themes/Peafowl/views/index.php
在头部加载区添加use Chevereto\Legacy\Classes\Stat;
在<div class="home-buttons">
这行之前添加以下代码
<!-- 添加图片数量显示 -->
<p class="c20 center-box text-align-center">
<?php
try {
$totalImages = Stat::getTotals()['images'] ?? 0;
echo _s('本站已存储图片数量(Total images uploaded): %d', $totalImages);
} catch (Exception $e) {
echo _s('Error retrieving image count.');
}
?>
</p>
修改后如图
显示效果如图