Ok so I on my page url = http://designsbyjot.com
I finally got the coding correct so that the mini posts are showing the excerpt under the title. (I did this because if I have a pic in the post it will also write the parameters for the image instead of showing the image)
Now I want to code an if else so that if there is not excerpt a message "Please Click to Read More..." comes up. This way if I forget to do an excerpt it won't be blank. Code I have right now is:
<div>
<?php if (the_excerpt == '') : ?>
<?php echo '<h2><b>Please Click Title to Read More...</b></h2>'; ?>
<?php else : ?>
<?php echo sb_clean($post->post_excerpt, 265); ?>
<?php endif; ?>
</div>
Please help I'm still a noob