View Single Post
  #1 (permalink)  
Old 06-14-2008, 07:45 AM
nursebreakroom nursebreakroom is offline
Junior Babbler
 
Join Date: May 2008
Posts: 14
nursebreakroom has a few positive reputation points
Default Need Html Code for Content

I accidently erased my content code that allows my written content to be seen. Does anyone have any suggestions on how to bring it back? I am using the Page Template and this is what it looks like:

<?php include "header.php"; ?>
<div id="container">
<div id="topcontent"></div>
<div id="singlecontent">
<div class="singlepost">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>

*****this is where I believe I accidently deleted a content code******

<div id="content"> </div>
<?php endwhile; endif; ?>
</div>
<div id="bottomcontent"> </div>
</div>
</div>
<?php include('footer.php'); ?>
<?php comments_template();?>

ANY suggestions welcome!! Thanks a million!!
Reply With Quote