Exclude some forums from latest forum posts?
error 232
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Exclude some forums from latest forum posts?
Philipp Esselbach
From: -
Editor
0From: -
Find:
and change it to:
In this example I have added WHERE NOT(forumid = '2') OR NOT(forumid = '4') to exclude forum 2 and 4.
$results = $uwrapper -> bbquery( "SELECT tid, title, forum_id FROM " . $uwrapper -> bbescape( $preferences[ 'website_uwrapper_prefix' ] ) . "topics ORDER BY last_post DESC LIMIT 10" );
and change it to:
$results = $uwrapper -> bbquery( "SELECT tid, title, forum_id FROM " . $uwrapper -> bbescape( $preferences[ 'website_uwrapper_prefix' ] ) . "topics WHERE NOT(forumid = '2') OR NOT(forumid = '4') ORDER BY last_post DESC LIMIT 10" );
In this example I have added WHERE NOT(forumid = '2') OR NOT(forumid = '4') to exclude forum 2 and 4.
How to exclude some forums being showed up in latest forum posts block?