mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
5 lines
191 B
Text
5 lines
191 B
Text
add_filter( 'relevanssi_remove_punctuation', function( $a ) {
|
|
$a = preg_replace( '/(\w)\.(\w)/', '\1\2', $a );
|
|
$a = preg_replace( '/(\w)\.(\w)/', '\1\2', $a );
|
|
return $a;
|
|
}, 8 );
|