function cudjex($text){
$text = str_replace('hayvan oğlu', '***', $text);
return $text;
}
add_filter('comment_text', 'cudjex');
add_filter('the_content', 'cudjex');
add_filter('the_excerpt', 'cudjex');
add_filter('the_title', 'cudjex');
$text = str_replace('hayvan oğlu', '***', $text); satırını çoğaltarak istediğiniz kadar küfür vs engelleyebilirsiniz.
*** yerine istediğiniz yazıyı yazabilirsiniz.
kaynak.