This update better respects disabled post types when finding appropriate term archives to bubble to the top. It also adds a new filter, searchwp_tax_term_or_logic
that allows you to enable OR logic when looking for potential term archive pages. For example if you want term archive pages with any of the search terms, you can add the following to your functions.php
to have any single term matches count as prioritized:
add_filter( 'searchwp_tax_term_or_logic', '__return_true' );
Lastly: when multiple taxonomies are utilized, the term bubbling is in accordance to the taxonomy weights you have set.