mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
5 lines
181 B
Text
5 lines
181 B
Text
add_filter( 'relevanssi_punctuation_filter', 'rlv_adjust_punctuation' );
|
|
function rlv_adjust_punctuation( $replacements ) {
|
|
$replacements['/'] = '';
|
|
return $replacements;
|
|
}
|