Skip to content

Instantly share code, notes, and snippets.

@msaari
Created November 7, 2018 17:39
Show Gist options
  • Select an option

  • Save msaari/dd4f929d97b2c83cc59c1b6e6bb1fa16 to your computer and use it in GitHub Desktop.

Select an option

Save msaari/dd4f929d97b2c83cc59c1b6e6bb1fa16 to your computer and use it in GitHub Desktop.
Remove slashes when indexing
<?php
// Add this to theme functions.php and rebuild the index:
add_filter('relevanssi_punctuation_filter', 'rlv_handle_slashes' );
function rlv_handle_slashes( $replacements ) {
$replacements['/'] = '';
return $replacements;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment