Quote:
Originally Posted by criscokid
Is it possible to exclude specific forums from showing up in the 'latest threads'?
|
PHP Code:
FROM ".TABLE_PREFIX."thread AS thread
LEFT JOIN ".TABLE_PREFIX."deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid AND type = 'thread')
$previewjoin
WHERE open <> 10
AND forumid NOT IN (74,75,76,94,86,41,106,118,113,105,107,110,112,119,111,108,92,104,121,122,123,124,125,126,127,128,129,133,130,146,147,148,149,150,151,152,153,154,158,88$limitfids)
AND thread.visible = '1'
AND deletionlog.primaryid IS NULL
ORDER BY lastpost
DESC LIMIT 20");
There is some of my code showing how I blocked all these forums from showing...