Skip to main contentSkip to footer

Starting from versions 2.4.0 (Premium) and 4.3.0 (Free), Relevanssi doesn’t index posts that have been marked “noindex” in the Yoast SEO settings (“Allow search engines to show this Post in search results?”). If the “noindex” setting is in the default value or set to explicit “yes”, Relevanssi indexes the post.

If you want Relevanssi to disregard the Yoast SEO “noindex” setting, you can adjust that from the advanced indexing settings.

Using Yoast SEO title instead of post title

Adding this function to your site will make Relevanssi use the Yoast SEO title instead of post title when indexing posts:

add_filter( 'relevanssi_post_title_before_tokenize', 'rlv_use_yoast_title', 10, 2 );
function rlv_use_yoast_title( $title, $post ) {
    return get_post_meta( $post->ID, '_yoast_wpseo_title', true );
}

(Read more about relevanssi_post_title_before_tokenize.)

Your account

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

Search

Popular Resources

Integrating Koko Analytics stats
It’s possible to integrate all kinds of external data to Relevanssi weights. Koko Analytics is a great analytics plugin. It…
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…

Related Posts:

Comment Section:

6 Comments. Leave new

  • Any chance you can do a similar filter hook to use the meta-title for SEO framework?

    Reply
    • The SEO Framework meta title is stored in _genesis_title, so the function would be:

      add_filter( 'relevanssi_post_title_before_tokenize', 'rlv_use_tsf_title', 10, 2 );
      function rlv_use_tsf_title( $title, $post ) {
          return get_post_meta( $post->ID, '_genesis_title', true );
      }
      Reply
  • That works! (Dashboard > Admin search) How do I tell my search bar to perform this way? I’m very much a novice in this area.

    Reply
  • I added Relevanssi because my default search engine would only search posts (not articles or pages). Relevanssi does the same thing – my results are only from posts; no pages or articles. How do I tell it to search the whole site? Yes, I did check the boxes for these three items when I created the index.

    Reply
    • Relevanssi would search the whole site. If you use the Admin search (Dashboard > Admin search), does that return all kinds of posts? It’s possible your theme is restricting the search results to posts. Does your theme have any settings that could affect this?

      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