Forums

[Plugin: phpbb_recent_topics] Exclude Multiple Forums (3 posts)

  1. Webbstre
    Member
    Posted 5 months ago #

    Hi there, I've been using this plug-in for months. Currently, I have one forum excluded from being displayed, via the script in the FAQ:

    $results = $wpdb->get_results("SELECT * FROM $TOPIC_TABLE WHERE forum_id != 1 ORDER BY topic_time DESC LIMIT $LIMIT");

    Where 1 is the number of that forum. My question is, Let's say I want to exclude Forum Numbers 2 and 3 as well. What would I change the code to?

  2. linickx
    Member
    Posted 5 months ago #

    Hi,

    Try:

    ... WHERE forum_id != 1 AND forum_id != 2 AND forum_id != 3 ORDER BY topic_time...

    HTH :-)
    Nick

  3. Webbstre
    Member
    Posted 5 months ago #

    THANK YOU SO MUCH! You would not believe the number of possible edits me and two other people tried without luck... and we never used the AND thing once :-P

Reply

You must log in to post.

About this Topic