how can I add filter in specfic field in my website?
I want to replace any saudian phone in specfic field in my theme my-listings in description and this my script in functions.php
:
function cudjex($text){
$text = preg_replace('/(009665|9665|\+9665|05|5)(5|0|3|6|4|9|1|8|7)([0-9]{7})/', '********', $text);
return $text;
}
add_filter('comment_text', 'cudjex');
it works good in comments ,but I want it works in another field called description in my theme ,how?