Add predefined values to custom post plugin

You need to add a condition:

function my_editor_content( $content ) {
$content = "";    
if ( 'movie_reviews' == get_post_type() ) {
        $content = "This is some custom content I'm adding to the post editor because I hate re-typing it."; }

        return $content;

tech