Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,251
- Themes
- 10,390
- Plugins
- 15,309
- Requests & Feedback
- 14,897
- Showcase
- 3,252
-
One other note, unlike wp_list_pages() you need to call this function with echo:
<?php echo bb_list_pages();?>
or modify the last few lines of the function from:
// Return the string to the caller
return $output;
to:
// Return the string to the caller
echo $output;
return;
then you can call the function similar to wp_list_pages()
<?php bb_list_pages();?>
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS