Search for numbers
-
I need to make searchs for numbers with decimals and equal signs (i.e.: 16=1 or 345.56), I added this code (for decimals) to the function file of my child theme but it didn´t work
add_filter(‘relevanssi_remove_punctuation’, ‘rlv_keep_decimals’, 9);
function rlv_keep_decimals($a) {
$a = preg_replace(‘/(\d)\./’, ‘\1PERIOD’, $a);
return $a;
}add_filter(‘relevanssi_remove_punctuation’, ‘rlv_keep_decimals_2’, 11);
function rlv_keep_decimals_2($a) {
$a = str_replace(‘PERIOD’, ‘.’, $a);
return $a;
}What should I do?
Thanks very much for your help.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Search for numbers’ is closed to new replies.