Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,269
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
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>';
}
?>