Fallback text for WordPress posts that have no excerpt set on the edit screen.
<?php $excerptAlt = 'This is my fallback text.'; if ( has_excerpt()) { echo get_the_excerpt(); } else { echo $excerptAlt; } ?>
WordPress Snippet