童虎:论坛首页分版最简单实现方法(转存)
<blockquote>转存自原来的discuz官方论坛:<br /><br />最近有不少人www.55bbs.com那种首页分版是怎么实现的,其实实现方法很简单,只要简单对index.php做简单修改就可以实现,方法如下<br /><br />打开index.php找到:<br /><br /><ol><li><br /><li>$sql = !empty($accessmasks)?<br /><li> "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<br /><li> LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid<br /><li> LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid<br /><li> WHERE f.status='1' ORDER BY f.type, f.displayorder"<br /><li> : "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<br /><li> LEFT JOIN {$tablepre}forumfields ff USING(fid)<br /><li> WHERE f.status='1' ORDER BY f.type, f.displayorder";<br /><li></ol>改成:</blockquote><ol><li><br /><li>$id='15,16,17,18';<br /><li><br /><li>$sql = !empty($accessmasks)?<br /><li> "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<br /><li> LEFT JOIN {$tablepre}forumfields ff ON ff.fid=f.fid<br /><li> LEFT JOIN {$tablepre}access a ON a.uid='$discuz_uid' AND a.fid=f.fid<br /><li> WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder"<br /><li> : "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<br /><li> LEFT JOIN {$tablepre}forumfields ff USING(fid)<br /><li> WHERE f.status='1' AND f.fid IN ($id) ORDER BY f.type, f.displayorder";<br /><li></ol><blockquote>其中的:<br /><br /><ol><li>$id='15,16,17,18';</ol></blockquote>中的数字可以改成你要显示的板块的fid,这个数字你可以根据你的需要改变,数字之间用,隔开。<br /><br />这些都做完后,把index.php另存为你需要的分区名称,例如sh.php然后用户访问sh.php就可以看到相应的分区了,如果想做成和www.55bbs.com一致的话,只要在模板里面添加相应的代码就可以了。<br /><br />小技巧:如果你是最新的RCFINAL版本,相应的链接代码可以加在首页的广告代码中,很方便的实现首页分版的功能。<br /><br />实现<em>, </em>首页<em>, </em>方法<em>, </em>简单 学习!!!!!!!!!!!!!!!!!!
頁:
[1]