Is there a way to edit Latest Post code to stop page bar from showing in my frame.php
<li><h2>Latest Post</h2>
<ul>
<?php $my_query = new WP_Query('showposts=10'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $shorttitle = substr(the_title('','',FALSE),0,39); ?>
<li><a title="<?php echo the_title() ?>" href="<?php the_permalink() ?>">
<?php echo $shorttitle; if (strlen($shorttitle) >38){ echo '...'; } ?>
</a></li>
<?php endwhile; ?>
</ul>
</li>
TT