Do not work in wordpress 3.2.1.
]]>Hey Mike,
This isn’t related to your plugin, but I thought you might be able to help seeing as you know your way around WP search engines.
See my question here:
https://wordpress.stackexchange.com/questions/22893/search-results-to-be-only-posts-children-of-page-id
I’m hoping you can help.
Thanks,
Drew
To get it working go into the original wp-sphinx-search.php
1. delete lines 90-92
foreach($results['matches'] as $result) {
$matching_ids[] = intval($result['attrs']['post_id']);
}
2. replace those lines with
$matching_ids = array_keys($results['matches']);
And now it works!
]]>