Add Default Text to your Posts

PHOTO EMBED

Sun Nov 13 2022 18:47:37 GMT+0000 (Coordinated Universal Time)

Saved by @brozool

 
<?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;
} 
?> 
content_copyCOPY

https://wpmudev.com/blog/shun-the-plugin-100-wordpress-code-snippets-from-across-the-net/