Aşağıdaki kodu functions.php ye ekleyin.

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {

$content = "

";

return $content;
}