Index the product slug in Relevanssi

Index the product slug in Relevanssi.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_content_to_index', 'rlv_index_slug', 10, 2 );
function rlv_index_slug( $content, $post ) {
    $slug_with_spaces = str_replace( '-', ' ', $post->post_name );
    return $content . ' ' . $slug_with_spaces;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.