I checked the code. Same thing. Exact. Hmm…
This is single.php page code:
<?php while (have_posts()) : the_post(); ?>
<div class="contentinner">
<p class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<span class="date"><?php the_time('l, F jS, Y') ?></span><br><br>
<?php the_content() ?>
<?php comments_template(); ?>
<?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('Say something »', '1 Comment »', '% Comments »'); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
This is category-2.php code:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="contentnav">
<p class="navlinks"> <?php previous_post_link('« %link') ?> <span class="bigbars">|</span> <?php next_post_link('%link »') ?>
</div>
<div id="contentside">
<div>
<p align="center"><img src="/~danmerk/wordpress/site/fleuron_top.gif" align="middle"><br><br><img src="/~danmerk/wordpress/site/head_viewdate.gif" align="middle">
<p align="center"><?php get_calendar(daylength); ?>
</div>
<!-- <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> //-->
<p class="subheads">Monthly Archives
<p class="archives"><?php wp_get_archives('type=monthly&limit=12'); ?>
<p class="subheads">Search the site<br><?php include (TEMPLATEPATH . '/searchform.php'); ?>
</div>
<div id="contentinner">
<p class="title"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>" class="title"><?php the_title(); ?></a>
<div class="content">
<?php the_content('<p class="content">Read the rest of this entry »
'); ?>
<h3>On my mind that day</h3><span class="thinking"><?php echo c2c_get_custom('currently'); ?></span>
<?php link_pages('<strong>Pages:</strong> ', '
', 'number'); ?>
<?php comments_template(); ?>
</div>
</div>
<?php endwhile; else: ?>
Sorry, no posts matched your criteria.
<?php endif; ?>