Search Results for 'bbpress'
-
Search Results
-
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.
Topic: WordPress deep integration
Sorry for yet another WordPress integration topic. I’m mainly interested in integrating my WordPress header with BBpress, and I’ve read just about every page on the topic. I tried the deep integration suggestions by editing my bb-config.php to include:
if ( !defined( ‘ABSPATH’ ) ) {
include_once( ‘../wordpress/wp-blog-header.php’ );
}
I’ve also tried setting the path to wp-load.php instead with no luck. I keep getting an error saying that the file or directory does not exist. My WordPress and BBpress installs are in separate directories, but on the same level. Ex:
/home/wordpress
/home/bbpress
Is the path I have correct? Also, I went through every file in the template and changed:
<?php bb_get_header(); ?>
<?php bb_get_footer(); ?>
to
<?php get_header(); ?>
<?php get_footer(); ?>
Are there any other suggestions?
Edit: Sorry I forgot to mention that I’m using WordPress 2.7.1 with bbPress Alpha 1 and my website is http://www.rivenwow.net