madlaxcb
Chevereto Member
https://madlax.pw/2025/05/483.html
Modify
Add
Before the line
The revised code is shown in the image below.
Modify
Code:
/content/legacy/themes/Peafowl/views/index.php
Add
use Chevereto\Legacy\Classes\Stat; in the header loading section.Before the line
<div class="home-buttons">, insert the following code,You can also modify the description content that needs to be displayed.:
PHP:
<!-- 添加图片数量显示 -->
<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>
The revised code is shown in the image below.