function replace_words($text){
$replace = array(
'wordA' => 'replacewithwordA',
'wordB' => 'replacewithwordB',
'wordC' => 'replacewithwordC'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_words');
add_filter('the_excerpt', 'replace_words');