有同学问怎么在#Chevereto#首页加上上传图片总数量统计,这里我就给出方法,只要在一个文件里加上几行#代码#就能解决。
第一种方法
在文件/app/themes/Peafowl/views/index.php 合适位置加入以下代码:
- <div id=“home-cover” data-content=“follow-scroll-opacity”>
- <?php G\Render\include_theme_file(‘snippets/homepage_cover_slideshow’); ?>
- <div id=“home-cover-content” class=“c20 fluid-column center-box padding-left-10 padding-right-10”>
- <?php CHV\Render\show_banner(‘home_before_title’, (function_exists(‘get_list’) ? get_list()->sfw : true)); ?>
- <h1><?php echo CHV\getSetting(‘homepage_title_html’) ?: _s(‘Upload and share your images.’); ?></h1>
- <h1>本站共托管 <?php
- $stats = CHV\Stat::getTotals();
- echo $stats[‘images’] > 999999 ? $stats[‘images’] : number_format($stats[‘images’]); // Will output the total n° images
- ?> 张图片</h1>
第二种方法
1、新建文件–保存为 count.php
- <?php
- error_reporting(0);
- $con = mysql_connect(“localhost”, “数据库用户名”, “数据库密码”);
- if (!$con)
- {
- die(‘Could not connect: ‘ . mysql_error());
- }
- $db_selected = mysql_select_db(“tu”,$con);
- $sql = “SELECT * FROM chv_images”;
- $result = mysql_query($sql,$con);
- echo mysql_num_rows($result);
- mysql_close($con);
- ?>
2、放在 app/themes/Peafowl/views/index.php 文件中的合适位置
- <?php
- $data = file_get_contents(‘https://网站域名/count.php’);
- ?>
- <p>本站已托管图片 <?php echo $data ?> 张</p>