Forums
-
- Forum
- Posts
-
- Installation
- 28,544
- Troubleshooting
- 62,832
- Themes
- 10,444
- Plugins
- 15,391
- Requests & Feedback
- 14,992
- Showcase
- 3,258
-
Oops, my fault. Do exactly what you did but put
global $bb;
directly under the function line.
<?php
function front_page_topics() {
global $bb;
$bb->page_topics = 2;
}
add_action( ‘bb_index.php_pre_db’, ‘front_page_topics’ );
?>