1 頁 (共 1 頁)

[討論]自動顯示發表主題時間

發表於 : 2003-09-28 11:23
joger123
這跟我之前問過的發表主題選單有點像
我現在已經沒架設phpbb2了
改用過vbb跟discuz~這2種都可以修改自動顯示發表主題時間
就是你不用填寫~再版面就可以看到發表主題的時間是什麼時候
po出來給想用的研究一下(我想這對軟體為主會是貼圖為主的論壇比較有用)

以下是vbb的修改方式

代碼: 選擇全部

打開:forumdisplay.php 
找到 $thread[lastreplydate]=vbdate($dateformat,$thread[lastpost]); (一共有2行)
這兩行前面加上$thread[dateline]=vbdate("[m/d]",$thread[dateline]);

尋找模板forumdisplaybit
在適當的地方加上$thread[dateline]
假如要在標題最前面就加在 $thread[title] 之前

接下來是要讓top5也顯示日期
1.打開 index.php
分別找到 $get_last_posts = $DB_site->query("SELECT threadid,thread.title,thread.
$get_top_views = $DB_site->query("SELECT threadid,thread.title,thread.
$get_top_replies = $DB_site->query("SELECT threadid,thread.title,thread.

在這3各後面加上
dateline,

2.找到\r
$icon_this = '<img src=images/thenewpost.gif align=absmiddle>';
在下面加上
$post[joger]=vbdate("[m/d]",$get_last_post[dateline]);

3.找到$icon_this = '<img src=images/themaxviewpost.gif align=absmiddle>'; 
在下面加上
$post[joger]=vbdate("[m/d]",$get_top_view[dateline]);
4.找到$icon_this = '<img src=images/themaxreplypost.gif align=absmiddle>'; 
在下面加上
$post[joger]=vbdate("[m/d]",$get_top_reply[dateline]); 

5.回到上面~分別在下面這3行字後面加上$post[joger] (直接加在後面就好)

$last_posts_5 .= "$icon_this
$top_views_5 .= "$icon_this
$top_replies_5 .= "$icon_this
存檔~大功告成^^