Temada functions.php açıp aşağıdaki kodu kendine göre uyarlayıp functions.php'nin içinde en alta eklersen sitede istediğin şeyi değiştirmiş olursun.

  function replace_content($content)
{
$content = str_replace('Değiştirilecek Kelime', 'Yerine Gelmesi İstenen Kelime',$content);
  return $content;
}
add_filter('the_content','replace_content');