Forums
-
- Forum
- Posts
-
- Installation
- 28,398
- Troubleshooting
- 62,313
- Themes
- 10,391
- Plugins
- 15,314
- Requests & Feedback
- 14,932
- Showcase
- 3,253
-
The standalone functions in bbPress Live don’t print anything to the screen, they return an array. You need to do something like this:
<?php
$bbl_topics = bbpress_live_get_topics();
foreach ($bbl_topics as $bbl_topic) {
echo '<a href="' . $bbl_topic['topic_uri'] . '">' . $bbl_topic['topic_title'] . '</a>';
}
?>