Add default text to a post or page when the_content is empty.
<?php $cc = get_the_content(); if( $cc != '' ) { the_content(); } else { ?> <p>My filler content goes here.</p> <?php } ?>
WordPress Snippet