Forums
-
- Forum
- Posts
-
- Installation
- 28,436
- Troubleshooting
- 62,517
- Themes
- 10,431
- Plugins
- 15,340
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
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();?>