Adding this snippet within the loop of your wordpress theme will let you display something only if it is on the last posts.
<?php if( ($wp_query->current_post + 1) < ($wp_query->post_count) ) { ?> <b>last post</b> <?php } ?>