Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

如何能让 “所有房源数量和每日发布房源数量在其他页面显示”?

[复制链接]
coco15838 发表于 2010-9-27 10:46:17 | 显示全部楼层 |阅读模式
从header代码中可以看出是限制在index中显示,但是去掉限制依然无法显示出数量,截图如下:

这是在首页正常显示:

这是在其他页面如 list 页面中数量无法调用:

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
dongdong0925 发表于 2010-9-27 11:03:47 | 显示全部楼层
处理这个数量的代码只是在mod=index的时候执行。
回复

使用道具 举报

 楼主| coco15838 发表于 2010-9-27 11:05:18 | 显示全部楼层
回复 dongdong0925 的帖子

如何在别的页面调用到这个数据?
回复

使用道具 举报

dongdong0925 发表于 2010-9-27 11:10:05 | 显示全部楼层
找到source/module/category/house/index.php  搜索以下代码
  1. if($sortlist) {
  2.         $sortids = array();
  3.         foreach($sortlist as $id => $sort) {
  4.                 $sortids[] = $id;
  5.         }

  6.         $totalthread = $todaythread = 0;
  7.         $query = DB::query("SELECT threads, todaythreads FROM ".DB::table('category_sort')." WHERE sortid IN (".dimplode($sortids).")");
  8.         while($sort = DB::fetch($query)) {
  9.                 $totalthread += $sort['threads'];
  10.                 $todaythread += $sort['todaythreads'];
  11.         }
  12. }
复制代码
将其剪切到根目录下的house.php文件中。
在house.php文件中搜索以下代码。
  1. require DISCUZ_ROOT.'./source/module/category/'.$modidentifier.'/'.$mod.'.php';
复制代码
将上面的代码粘贴到这段代码之上。
回复

使用道具 举报

 楼主| coco15838 发表于 2010-9-27 11:17:34 | 显示全部楼层
回复 dongdong0925 的帖子

O yeah  多谢管理员!!!我的房产网站很快就能展示出来了,哈哈
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-12-24 07:49 , Processed in 0.026625 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表