Hi
I only posted the Loop part of the code. And I got the php stuff from the default template. I did kind of model off the default template but I removed some parts that I didn’t want in my layout. What exactly would I need to put to show the comments? ^^;; Sorry, this is my first time using wordpress. >.<
Here’s the entire index.php page in case you need to look at it:
<?php ob_start(); ?>
<?php get_header(); ?>
<div id="left">
<img src="images/cg_01.jpg" width="160px" height="199px" alt="" style="position:absolute; top:0px; left:0px;"/>
<img src="images/cg_02.jpg" width="160px" height="199px" alt="" style="position:absolute; top:0px; left:160px;"/>
<img src="images/cg_05.jpg" width="160px" height="200px" alt="" style="position:absolute; top:199px; left:0px;"/>
<img src="images/cg_06.jpg" width="160px" height="200px" alt="" style="position:absolute; top:199px; left:160px;"/>
<img src="images/cg_09.jpg" width="160px" height="199px" alt="" style="position:absolute; top:399px; left:0px;"/>
<img src="images/cg_10.jpg" width="160px" height="199px" alt="" style="position:absolute; top:399px; left:160px;"/>
<img src="images/cg_13.jpg" width="160px" height="201px" alt="" style="position:absolute; top:598px; left:0px;"/>
<img src="images/cg_14.jpg" width="160px" height="201px" alt="" style="position:absolute; top:598px; left:160px;"/>
<div id="nav">
<a href="https://crux-gammata.net" title="Home"><img src="images/browse_01.png" width="104px" height="31px" alt="" style="position:absolute; top:325px; right:72px;"/></a>
<a href="https://crux-gammata.net/domain" title="Info"><img src="images/browse_02.png" width="104px" height="29px" alt="" style="position:absolute; top:356px; right:72px;"/></a>
<a href="https://crux-gammata.net/sites" title="Sites"><img src="images/browse_03.png" width="104px" height="31px" alt="" style="position:absolute; top:385px; right:72px;"/></a>
<a href="https://crux-gammata.net/contact" title="Contact"><img src="images/browse_04.png" width="104px" height="29px" alt="" style="position:absolute; top:416px; right:72px;"/></a>
<a href="https://crux-gammata.net/guestbook" title="Guestbook"><img src="images/browse_05.png" width="104px" height="31px" alt="" style="position:absolute; top:445px; right:72px;"/></a>
<a href="https://crux-gammata.net/exit" title="Links & Exit"><img src="images/browse_06.png" width="104px" height="34px" alt="" style="position:absolute; top:476px; right:72px;"/></a>
</div>
<?php get_sidebar(); ?>
</div>
<div id="right">
<img src="images/cg_03.jpg" width="220px" height="199px" alt="" style="position:absolute; top:0px; left:0px;"/>
<img src="images/cg_04.jpg" width="220px" height="199px" alt="" style="position:absolute; top:0px; left:220px;"/>
<img src="images/cg_07.jpg" width="220px" height="200px" alt="" style="position:absolute; top:199px; left:0px;"/>
<img src="images/cg_08.jpg" width="220px" height="200px" alt="" style="position:absolute; top:199px; left:220px;"/>
<img src="images/cg_11.jpg" width="220px" height="199px" alt="" style="position:absolute; top:399px; left:0px;"/>
<img src="images/cg_12.jpg" width="220px" height="199px" alt="" style="position:absolute; top:399px; left:220px;"/>
<img src="images/cg_15.jpg" width="220px" height="201px" alt="" style="position:absolute; top:598px; left:0px;"/>
<img src="images/cg_16.jpg" width="220px" height="201px" alt="" style="position:absolute; top:598px; left:220px;"/>
<div id="main">
<p class="header"><img src="images/root_b.png" width="60px" height="25px" alt="/root"/></p>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<img src="images/cursor.png" alt="" width="12px" height="15px" style="margin-left:25px;margin-top:23px;"/> <a class="title" id="entry<?php the_ID(); ?>" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<p class="date"><?php the_time('F jS, Y'); ?> @ <?php the_time('g:i a'); ?></p>
<div class="entry"><?php the_content('Read on...'); ?></div>
<p class="comment">[<?php comments_popup_link(' 0 Comments ', ' 1 Comment ', ' % Comments '); ?>]</p>
<!--
<?php trackback_rdf(); ?>
-->
<img src="images/divider.png" alt="" width="400px" height="1px" style="margin-top:30px; margin-bottom:30px;margin-left:20px;"/>
<?php endwhile; else: ?>
<h2>Not Found</h2>
<p class="entry"><?php _e('Sorry, but you are looking for something that isnt here.'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
<?php
include_once 'replacePngTags.php';
echo replacePngTags(ob_get_clean());
?>
Please help me fix this.
Thanks,
Ann~