Re: How do I exclude a forum category from latest discussions?
the latest bleeding edge release (from subversion) adds paging to the ‘Latest Discussions’. But if any of the arguments are used in ‘get_latest_topics’ the paging doesn’t work.
from functions.bb-topics.php
function get_latest_topics( $args = null ) {
$defaults = array( 'forum' => false, 'page' => 1, 'exclude' => false, 'number' => false );
so I’ve tried it with
$topics = get_latest_topics('forum=-3');
and
$topics = get_latest_topics('exclude=3');
both have same results but no paging.