Eğer niphell'in dediğini kastediyorsanız,
function my_editor_content( $content ) {
	$content = 'Bu kısım editörde gösterilecektir.';
	return $content;
}
add_filter( 'default_content', 'my_editor_content' );
kodunu temanızın functions.php dosyası içerisine yerleştiriniz.