- Scheduled cache truncate wasn’t scheduled properly. It is now.
- Added support for ‘author’ query variable.
- Fixed a bug with indexing custom post types.
Adding extra weight to AND results in an OR search
…the relevanssi_match filter hook: add_filter( ‘relevanssi_match’, ‘rlv_and_boost’ ); function rlv_and_boost( $match ) { global $rlv_and_database; $multi_term_boost = 5; if ( ! isset( $rlv_and_database[ $match->doc ] ) ) { $rlv_and_database[ $match->doc ] = true; } else { $match->weight *= $multi_term_boost; } return $match; } With this function in place, posts that……*= $multi_term_boost; } return $match; } With this function in place, posts that match more than one search term will get a bonus. The more search terms the post matches, the bigger the bonus. You can adjust the boost factor until you get results you like. This was asked here….