Small fix:
- Relevanssi will now index pending and future posts. These posts are only shown in the admin search.
Small fix:
Not logged in. Log in to see your license details.
…counts as a new search for Relevanssi logs. If you don’t like that, you can make Relevanssi only log the first Ajax Load More search. If you want that, use these functions instead of the one above: add_filter( ‘alm_modify_query_args’, function( $args ) { global $rlv_is_offset_query; $args[‘relevanssi’] = true; if (……global $rlv_is_offset_query; $args[‘relevanssi’] = true; if ( $args[‘offset’] ) { $rlv_is_offset_query = true; } return $args; } ); add_filter( ‘relevanssi_ok_to_log’, function( $ok, $query ) { global $rlv_is_offset_query; if ( $rlv_is_offset_query ) { $ok = false; } return $ok; }, 10, 2 ); Now Relevanssi logs each search query only once….
Sometimes you want to get a specific post as the first result for a certain search, but Relevanssi doesn’t return the right post as the first result by itself for some reason. Relevanssi Premium has a tool for these situations: pinning. Pinning allows you to specify keywords for each post,……the search phrase are considered individually: all posts pinned for “lentil soup”, “lentil” or “soup” will be on top of the results. Relevanssi does prioritize the length of the pinned phrase. Any posts pinned on “lentil soup” will be before posts pinned on “lentil”, no matter what the weights are….