Activity Stream →
-
Milan started a new topic Show latest Forum Topics in Page Template in the forum Creating & Extending: 1 month, 3 weeks ago
I was very excited about the new Theme Framework and upgraded old BP Members Theme to a child theme which uses version 1.1.3 theme framework.
All worked out great except the home page where I used to display recent Forum topics using bp_forums_get_topics function in a Page Template. Now it shows fatal error as that function [...] -
Milan posted a reply on the forum topic Custom Loops for Forum Topics: 7 months, 2 weeks ago
Yes I got my template running just fine.
Here is the code I use to show 5 recent topics across forum:$topics = bp_forums_get_topics(0, 5);
if ($topics)
{
foreach ($topics as $topic)
{
print ‘
<div class=”home-box-item”>
‘ . $topic . ‘
by ‘ . $topic . ‘Freshness: ‘ . $topic . ‘
Posts: ‘ . $topic . ‘
</div>
‘;
}
}
else
{
print ‘<p>No topics found.</p>’;
}If you want to show [...]
-
Milan posted a reply on the forum topic Custom Loops for Forum Topics: 7 months, 3 weeks ago
@Burt
Thanks a lot for the function reference. -
milanmk updated the “Base” information on their profile 8 months ago
-
milanmk posted a reply on the forum topic Custom Loops for Forum Topics: 8 months ago
Oh i see, I wont be using that widget then.
Is there a way to get all forum IDs from BBPress so as to fetch posts from forums and sub-forums using bp_has_topics() function.
Wire Messages →
No one has posted to Milan's wire yet.