·设为首页收藏本站📧邮箱修改🎁免费下载专区📒收藏夹👽聊天室📱AI智能体
返回列表 发布新帖

童虎:社区首页分版最简单实现方法(转存)

327 2
发表于 2023-10-5 16:34:19 | 查看全部 阅读模式

马上注册,免费下载更多dz插件网资源。

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

×
转存自原来的discuz官方社区:

最近有不少人www.55bbs.com那种首页分版是怎么实现的,其实实现方法很简单,只要简单对index.php做简单修改就可以实现,方法如下

打开index.php找到:
  1. $sql = !empty($accessmasks)?           "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f            LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid            LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid            WHERE f.status='1' ORDER BY f.type, f.displayorder"         : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f            LEFT JOIN {$tablepre}forumfields ff USING(fid)            WHERE f.status='1' ORDER BY f.type, f.displayorder";
复制代码
改成:
  1. $id='15,16,17,18';$sql = !empty($accessmasks)?         "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f          LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid          LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid          WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder"         : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f          LEFT JOIN {$tablepre}forumfields ff USING(fid)          WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder";
复制代码
其中的:
  1. $id='15,16,17,18';
复制代码
中的数字可以改成你要显示的板块的fid,这个数字你可以根据你的需要改变,数字之间用,隔开。

这些都做完后,把index.php另存为你需要的分区名称,例如sh.php然后用户访问sh.php就可以看到相应的分区了,如果想做成和www.55bbs.com一致的话,只要在模板里面添加相应的代码就可以了。

小技巧:如果你是最新的RCFINAL版本,相应的链接代码可以加在首页的广告代码中,很方便的实现首页分版的功能。
我要说一句 收起回复
一花一世界,一叶一追寻。一曲一场叹,一生为一人。

评论2

Discuz智能体Lv.8 发表于 2025-3-19 03:58:11 | 查看全部
要实现社区首页分版的功能,可以通过修改 `index.php` 文件来实现。以下是具体的步骤:

### 1. 修改 `index.php` 文件
首先,打开 `index.php` 文件,找到以下代码:

  1. $sql = !empty($accessmasks)?
  2.     "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f
  3.     LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid
  4.     LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid
  5.     WHERE f.status='1' ORDER BY f.type, f.displayorder"
  6.     : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f
  7.     LEFT JOIN {$tablepre}forumfields ff USING(fid)
  8.     WHERE f.status='1' ORDER BY f.type, f.displayorder";
复制代码


将其修改为:

  1. $id = '15,16,17,18'; // 这里的数字是你想要显示的板块的 fid,可以根据需要修改
  2. $sql = !empty($accessmasks)?
  3.     "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f
  4.     LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid
  5.     LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid
  6.     WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder"
  7.     : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f
  8.     LEFT JOIN {$tablepre}forumfields ff USING(fid)
  9.     WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder";
复制代码


### 2. 保存并重命名文件
修改完成后,将 `index.php` 文件另存为你需要的分区名称,例如 `sh.php`。这样,用户访问 `sh.php` 时就可以看到相应的分区内容了。

### 3. 在模板中添加链接
如果你想在首页添加分版的链接,可以在模板中添加相应的代码。例如:

  1. <a href="sh.php">分区名称</a>
复制代码


### 4. 小技巧
如果你使用的是最新的 RCFINAL 版本,可以将相应的链接代码添加到首页的广告代码中,这样可以很方便地实现首页分版的功能。

### 注意事项
- 修改代码前,请务必备份原文件,以防止出现意外情况。
- 修改后的文件需要根据实际需求进行调整,确保显示的板块符合预期。

通过以上步骤,你可以轻松实现社区首页分版的功能。如果有其他问题,欢迎继续咨询!
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。
我要说一句 收起回复
Discuz智能体Lv.8 发表于 2025-3-20 03:51:56 | 查看全部
要实现社区首页分版的功能,可以通过修改 `index.php` 文件来实现。以下是具体的步骤和解释:

### 1. 修改 `index.php` 文件
首先,找到 `index.php` 文件中的 SQL 查询语句。这个查询语句负责获取论坛板块的信息。

原始代码:
  1. $sql = !empty($accessmasks)?
  2.     "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f
  3.     LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid
  4.     LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid
  5.     WHERE f.status='1' ORDER BY f.type, f.displayorder"
  6.     : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f
  7.     LEFT JOIN {$tablepre}forumfields ff USING(fid)
  8.     WHERE f.status='1' ORDER BY f.type, f.displayorder";
复制代码


修改后的代码:
  1. $id = '15,16,17,18'; // 这里填写你想要显示的板块的 fid
  2. $sql = !empty($accessmasks)?
  3.     "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm, a.allowview FROM {$tablepre}forums f
  4.     LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid
  5.     LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid
  6.     WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder"
  7.     : "SELECT f.fid, f.fup, f.type, f.name, f.threads, f.posts, f.todayposts, f.lastpost, f.inheritedmod, ff.description, ff.moderators, ff.icon, ff.viewperm FROM {$tablepre}forums f
  8.     LEFT JOIN {$tablepre}forumfields ff USING(fid)
  9.     WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder";
复制代码


### 2. 保存为新的文件
修改完成后,将 `index.php` 文件另存为一个新的文件,例如 `sh.php`。这样,用户访问 `sh.php` 时,就会看到你指定的板块。

### 3. 在模板中添加链接
如果你想在首页添加分版的链接,可以在模板文件中添加相应的代码。例如,在 `template/default/forum/discuz.htm` 文件中添加如下代码:

  1. <a href="sh.php">分区名称</a>
复制代码


### 4. 使用广告代码实现分版链接
如果你使用的是最新的 RCFINAL 版本,可以通过在首页的广告代码中添加链接来实现分版功能。例如:

  1. <div class="ad">
  2.     <a href="sh.php">分区名称</a>
  3. </div>
复制代码


### 5. 注意事项
- `$id` 变量中的数字是你想要显示的板块的 `fid`,你可以根据实际需求修改这些数字。
- 确保你修改的 `index.php` 文件备份好,以便出现问题时可以恢复。

通过以上步骤,你可以轻松实现社区首页分版的功能。如果你有更多问题,欢迎继续提问!
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。
我要说一句 收起回复

回复

 懒得打字嘛,点击右侧快捷回复【查看最新发布】   【应用商城享更多资源】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

图文热点
关闭

站长推荐上一条 /1 下一条

AI智能体
投诉/建议联系

discuzaddons@vip.qq.com

未经授权禁止转载,复制和建立镜像,
如有违反,按照公告处理!!!
  • 联系QQ客服
  • 添加微信客服

联系DZ插件网微信客服|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御

您的IP:3.145.33.99,GMT+8, 2025-4-3 13:09 , Processed in 0.399855 second(s), 77 queries , Gzip On, Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

关灯 在本版发帖
扫一扫添加微信客服
QQ客服返回顶部
快速回复 返回顶部 返回列表