Forums
-
- Forum
- Posts
-
- Installation
- 28,406
- Troubleshooting
- 62,337
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,947
- Showcase
- 3,254
-
and remember to use $wpdb on WordPress pages, vs $bbdb on bbPress pages
I want to query $bbdb from a wp page. In particular, I want to fetch the total amount of views from your bb Topic Views plugin. This code didn’t work;
<?php
global $bbdb;
$results=$bbdb->get_results("SELECT SUM(meta_value) FROM bb_meta WHERE object_type='bb_topic' AND meta_key='views'");
$results=$bbdb->get_results($query);
?>
WordPress is installed in /wordpress/ and bbpress in /wordpress/bbpress/ both deep integrated. What’s missing?