Keep an underscore in indexed content in Relevanssi

Keep an underscore in indexed content in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_punctuation_filter', 'rlv_adjust_punctuation' );
function rlv_adjust_punctuation( $replacements ) {
    $replacements['_'] = '';
    return $replacements;
}

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