=========
QUESTION
———
I am constantly inputting the same boiler plate text and other content into my WordPress posts, is there a way to have a template of sorts, so you can always have the same text pre-populated in your WordPress Post?

=========
ANSWER
———
Yes, there is a great plugin for just that need called ‘Default Post Content’, available at http://wordpress.org/extend/plugins/default-post-content/ 

———
You can also hack the WordPress code directly for this purpose by editing the Functions.php file in your WordPress theme files as follows:

add_filter( ‘default_content’, ‘my_editor_content’ ); 
function my_editor_content( $content ) { 
$content = “TEXT TO APPEAR ON ALL POSTS”; 
return $content; 

=========
EXAMPLES
———
add_filter( ‘default_content’, ‘my_editor_content’ ); 
function my_editor_content( $content ) { 
$content = “TEXT TO APPEAR ON ALL POSTS”; 
return $content; 

=========
APPLIES TO / KEY WORDS
———
WordPress
Default Post Content

=========
REF
———
http://wordpress.org/extend/plugins/default-post-content/

http://www.wpbeginner.com/wp-tutorials/how-to-add-default-content-in-your-wordpress-post-editor/


http://www.anysitesupport.com/wordpress-how-to-add-default-content-to-your-posts/
http://anySiteHosting.com