Skip to main contentSkip to footer

Couple of bugs found, a significant improvement in the settings page and couple of new features. That’s what this version is made of. Here’s the changelog:

  • Support for WP Table Reloaded and TablePress. Tables created with these plugins will now be expanded and the content indexed by Relevanssi.
  • Relevanssi now adds spaces between tags when creating excerpts to make neater excerpts from tables and other similar situations.
  • Relevanssi now indexes unattached attachments, if you choose to index attachments.
  • Fixed some cases where AND search fails when the search terms include stopwords.
  • Fixed a bug in indexing user profiles and taxonomy terms.
  • Fixed the problems with Twenty Ten and Twenty Eleven themes better.
  • Relevanssi now adds relevance score to posts before passing them to relevanssi_hits_filter. You can find it in $post->relevance_score.
  • New filter: relevanssi_index_comments_exclude can be used to exclude comments from indexing. The filter gets the post ID as a parameter, so you can prevent comments of particular posts being indexed, yet index those posts.
  • You can now choose the taxonomies to index from a checkbox list.
  • New Premium feature: you can disable particular shortcodes from the shortcode expansion.

Get yours from the download page or by auto-update.

Your account

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

Search

Popular Resources

FacetWP
Relevanssi is generally well compatible with FacetWP, which provides advanced filtering and faceting capabilities for the search. There are, however,…
Moving the admin search page

Jules Colle came up with a method of moving the Relevanssi admin search page from under the Dashboard heading to the top level of the admin menu. add_action( ‘admin_menu’, function () { remove_submenu_page( ‘index.php’, ‘relevanssi_admin_search’ ); add_menu_page( ‘Search all content’, ‘Search all content’, ‘manage_options’, ‘relevanssi_admin_search’, ‘relevanssi_admin_search_page’, ‘dashicons-search‘, 2 ); },……introduced. This filter hook lets you add new admin page hooks where Relevanssi javascript is used, so we can introduce our new admin search page: add_filter( ‘relevanssi_acceptable_hooks’, function( $hooks ) { $hooks[] = ‘toplevel_page_relevanssi_admin_search’; return $hooks; } ); Now we have a nice, functioning admin search that is not hidden:……99 ); This function adds an admin_menu action that first uses remove_submenu_page() to remove the existing admin search function and then add_menu_page() to add it again on the top menu level. This works well except for one thing. The Relevanssi admin javascript is added only to specific pages, and the…

Search shortcode

Relevanssi adds a shortcode to help making links to search results. That way users can easily find more information about a given subject from your blog. The syntax is simple: John Doe This will make the text John Doe a link to search results for John Doe. In case you…

Related Posts:

Comment Section:

9 Comments. Leave new

  • You can now choose the taxonomies to index from a checkbox list

    …Not working for me. I check a (custom) taxonomy and click “Save” and the taxonomy is un-checked (and not indexing as expected) when the page refreshes.

    Reply

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