Skip to main contentSkip to footer

Quick fix release. This corrects the multiple taxonomy behaviour in 1.3. The multiple taxonomies had an OR logic, which made the feature quite pointless. Now there’s AND logic, so all taxonomy terms must be present. This has the desired effect of narrowing the searches.

This isn’t a very important upgrade, unless you plan to use that feature.

Your account

Not logged in. Log in to see your license details.

Search

Popular Resources

Integrating Post Views Counter stats
It’s possible to integrate all kinds of external data to Relevanssi weights. Post Views Counter is an analytics plugin that collects stats…
Polylang Pro: Indexing synced posts

Polylang Pro has a feature to sync translations between posts. The problem with this and Relevanssi is that Relevanssi does not index the changes to the synced posts. With this filter function added to your site, Relevanssi will also index the synced posts: add_action( ‘save_post’, ‘index_post_in_all_languages’ ); function index_post_in_all_languages( $post_id……’slug’ ); $languages_to_index = array_diff( $all_languages, [ $post_language] ); foreach ( $languages_to_index as $lang ) { $post_id_to_index = pll_get_post( $post_id, $lang ); if ( $post_id_to_index > ) { relevanssi_insert_edit( $post_id_to_index ); } } } Thanks to Nico von Niederhäusern / Cubetech. There’s also a method for indexing WPML synced posts….

Related Posts:

Currently there are no related posts available.

Comment Section:

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed