bb-query help!
-
I’m trying to display a list of posts that are tagged with one tag but NOT another. For example, I want to display all posts tagged “FRUIT” but exclude posts tagged “Apples”.
I tried creating a custom View, but this code does not work:
function my_custom_views_init() {
$args = array(
'tag_id' => '35',
'tag_id' => '!=72'
);
bb_register_view(
'fruit-without-apples',
'Fruit (excluding apples)',
$args,
false
);
}Neither does this code using bb-query directly:
$topic_query = new BB_Query( 'topic',
array(
'tag_id' => '35',
'tag_id' => '!=72'
)
);
$results = $topic_query->results;
foreach($results as $result) {
echo $result->topic_title . '';
}Any ideas?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.