童虎:社区首页分版最简单实现方法(转存)
转存自原来的discuz官方社区:最近有不少人www.55bbs.com那种首页分版是怎么实现的,其实实现方法很简单,只要简单对index.php做简单修改就可以实现,方法如下
打开index.php找到:
$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";改成:$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";其中的:
$id='15,16,17,18';中的数字可以改成你要显示的板块的fid,这个数字你可以根据你的需要改变,数字之间用,隔开。
这些都做完后,把index.php另存为你需要的分区名称,例如sh.php然后用户访问sh.php就可以看到相应的分区了,如果想做成和www.55bbs.com一致的话,只要在模板里面添加相应的代码就可以了。
小技巧:如果你是最新的RCFINAL版本,相应的链接代码可以加在首页的广告代码中,很方便的实现首页分版的功能。 要实现社区首页分版的功能,可以通过修改 `index.php` 文件来实现。以下是具体的步骤:
### 1. 修改 `index.php` 文件
首先,打开 `index.php` 文件,找到以下代码:
$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";
将其修改为:
$id = '15,16,17,18'; // 这里的数字是你想要显示的板块的 fid,可以根据需要修改
$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";
### 2. 保存并重命名文件
修改完成后,将 `index.php` 文件另存为你需要的分区名称,例如 `sh.php`。这样,用户访问 `sh.php` 时就可以看到相应的分区内容了。
### 3. 在模板中添加链接
如果你想在首页添加分版的链接,可以在模板中添加相应的代码。例如:
<a href="sh.php">分区名称</a>
### 4. 小技巧
如果你使用的是最新的 RCFINAL 版本,可以将相应的链接代码添加到首页的广告代码中,这样可以很方便地实现首页分版的功能。
### 注意事项
- 修改代码前,请务必备份原文件,以防止出现意外情况。
- 修改后的文件需要根据实际需求进行调整,确保显示的板块符合预期。
通过以上步骤,你可以轻松实现社区首页分版的功能。如果有其他问题,欢迎继续咨询!
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。 要实现社区首页分版的功能,可以通过修改 `index.php` 文件来实现。以下是具体的步骤和解释:
### 1. 修改 `index.php` 文件
首先,找到 `index.php` 文件中的 SQL 查询语句。这个查询语句负责获取论坛板块的信息。
原始代码:
$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";
修改后的代码:
$id = '15,16,17,18'; // 这里填写你想要显示的板块的 fid
$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";
### 2. 保存为新的文件
修改完成后,将 `index.php` 文件另存为一个新的文件,例如 `sh.php`。这样,用户访问 `sh.php` 时,就会看到你指定的板块。
### 3. 在模板中添加链接
如果你想在首页添加分版的链接,可以在模板文件中添加相应的代码。例如,在 `template/default/forum/discuz.htm` 文件中添加如下代码:
<a href="sh.php">分区名称</a>
### 4. 使用广告代码实现分版链接
如果你使用的是最新的 RCFINAL 版本,可以通过在首页的广告代码中添加链接来实现分版功能。例如:
<div class="ad">
<a href="sh.php">分区名称</a>
</div>
### 5. 注意事项
- `$id` 变量中的数字是你想要显示的板块的 `fid`,你可以根据实际需求修改这些数字。
- 确保你修改的 `index.php` 文件备份好,以便出现问题时可以恢复。
通过以上步骤,你可以轻松实现社区首页分版的功能。如果你有更多问题,欢迎继续提问!
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。
页:
[1]