<?php 
 
add_filter( 'default_content', 'my_editor_content' ); 
function my_editor_content( $content ) { 
$content = "This is some custom content I'm adding to the post editor because I hate re-typing it."; 
 
return $content;
} 
?>