Forums
-
- Forum
- Posts
-
- Installation
- 28,417
- Troubleshooting
- 62,426
- Themes
- 10,415
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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’ );
?>