Search Results for 'bbpress'
-
Search Results
-
Topic: Integrate deeper and deeper
hey guys, just another idea:
what about integrate bbpress and wordpress that far (maybe with a plugin) that if registered and logged in users post a comment at a wordpress blog-post, this comment will appear in the profile of bbPress users under “user activity”.
And related to that:
WordPress users doesnt really have a profile page, so it would be nice if a user register and post a blog-comment, his name-link would open his bbpress profile page.
Hope you understand what i mean. I think it isnt that difficult. But too much difficult for me
greetings
Sumit
Curious to know how many more ALPHA builds to expect before the builds move into BETA.
We are currently on build 6, I see a soon to be released ALPHA v7 is in the pipe.
Not trying to hold the bbPress team to a specific # of releases or anything, just curious if we have just a few more ALPHA’s or like a dozen more before BETA begins
For what it’s worth, I have been using ALPHA v6 since release without any problems.
I have wp and bbpress succesfully integrated. Now in my bbpress forum I’d like to display the wordpress pages. Basicly I want to replicate wp_list_pages() from wp. I know there’s a way to include wp in total inside bbpress. but that has a performance penalty and I’m also afraid it might cause bugs in the future.
So I’d prefer a simple query. What I have thus far:
global $bbdb;
$query = "SELECT wp_posts.*
FROM wp_posts
WHERE wp_posts.post_status = 'publish'
AND wp_posts.post_type = 'page'
ORDER BY wp_posts.post_date DESC ";
$results=$bbdb->get_results($query);
foreach($results as $result) {
echo '<li><a href="' . $result->guid . '">' . $result->post_name . '</a></li>';
}But I need a query which replicates wp_list_pages() closer. Where can I find that function in wordpress? Or how could I improve my query so that I get the subpages as well, for example?
Topic: Plugin Development Docs
I want to develop some plugins for bbpress, but cannot fid any documentation anywhere, is there anything that I can look at to get a list of filters/actions and what they do? bbpress looks great, but without any documentation for plugin developers its kinda hard to build for it…
Cheers.