How to Add Default Content in WordPress Post

Open  WordPress theme’s functions.php file ( or child theme functions.php ) and paste the following code within the PHP tags.

add_filter( 'default_content', 'my_editor_content' );
function my_editor_content( $content ) {
$content = 'This is default wp editor content. Shortcode are welcome!';
return $content;
}