the right sidebar is just the footer.php
Because the loop relies on the $topics
global being set by the base index.php file.
$topics = get_latest_topics(false, $page);
You can add this to your template if you like just above that loop, to make sure $topics is always available…
if ( !isset( $topics ) ) {
$topics = get_latest_topics( false, 1 ); // Only fetch the first page
}
thanks sam it works.
now i can loop through certain forums anywhere on the site.
many thanks for everything.
guys check it out http://www.massbase.com
you can do anything with bb-press.
Its just code that works. Real power is the pluggable nature of bbPress & WordPress which lets you add almost any functionality without bloating the code for mass consumption.