Reemplazar texto en wordpress Reemplazar texto en wordpress

Reemplazar texto en wordpress

function replace_text($text) {
	$text = str_replace('Correo electrónico', 'replace-with-this-string', $text);	
	return $text;
}
add_filter('the_content', 'replace_text');