Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Fail to make BBpress Live working


Sam Bauers
Participant

@sambauers

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>';
}
?>

Skip to toolbar