Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Here’s how to show bbPress info inside WordPress without full integration

Hey guys! I can’t make $result->topic_poster_name work in my 0.9.0.4 instalation.

Is this the right function for this version?

// REPLIES

$query_replies="SELECT * FROM bb_posts WHERE topic_id=$topic_id AND post_id != $first_reply_id AND post_status=0 ORDER BY post_time DESC";

$results_replies=$wpdb->get_results($query_replies);

$replies_text = "";

foreach ($results_replies as $result) {

echo $result->post_text;

echo $result->topic_poster_name;

}

The post_text works perfectly, but the poster_name returns me nothing. Any idea?

Skip to toolbar