一.修改后台代码
docker安装的先进入docker内部
docker exec -it chevereto-v4 bash
安装 vim
编辑器
apt-get update
apt-get install vim
修改 index.php 文件
位置:/chevereto/app/legacy/routes/index.php
docker里面的目录为 html 下/app/legacy/routes/index.php
修改以下两处:
第一处: 找到下述代码:
use Chevereto\Legacy\Classes\Settings;
在后面添加以下代码
use Chevereto\Legacy\Classes\Stat;
第二处:找到下列代码
$handler::setVar('doctitle', _s(Settings::get('website_doctitle')));
$handler::setVar('pre_doctitle', _s(Settings::get('website_name')));
在后面添加以下代码:
$handler::setVar('totals', Stat::getTotals());
二.修改首页代码
修改 index.php 文件
位置:/chevereto/content/legacy/themes/Peafowl/views/index.php
,docker里面的目录为 html 下
修改以下一处:/content/legacy/themes/Peafowl/views/index.php
找到下列代码:
<div class="home-buttons">
<?php echo Handler::var('homepage_cta'); ?>
</div>
添加以下内容:
<p id="home-cover-msg">
已托管 <span class="image-count" style="color:#27AE61;"><?php echo (number_format((float) Handler::var('totals')['images'])); ?></span> 张图片
</p>
到这里就完成了
转载来自小叶云-发现科技的魅力 !
© 版权声明
1.本站部分内容收集于互联网公开页面!若内容侵犯到您的权益,请发送邮件至:ai@ouluai.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。
THE END