The index.php file under this particular theme doesn’t appear to call in any pages, just posts… so I’m not sure how to modify the calls to function for pages w/o modifying it for all the posts. Thanks.
\
<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”>
<h2 class=”entrydate”><?php the_date() ?></h2>
<h3 class=”entrytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark”><?php the_title(); ?></h3>
<div class=”entrybody”>
<?php the_content(__(‘(more…)’)); ?>
<p class=”comments_link”>
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/file.gif” title=”file” alt=”*” />
<?php _e(“Filed by”); ?> <?php the_author();?> <?php _e(“at”);?> <?php the_time() ?> <?php _e(“under”);?> <?php the_category(‘,’);?><br/>
<?php
$comments_img_link = ‘<img src=”‘ . get_stylesheet_directory_uri() . ‘/images/comments.gif” title=”comments” alt=”*” />’;
comments_popup_link(‘No Comments’, $comments_img_link . ‘ 1 Comment’, $comments_img_link . ‘ % Comments’);
?>
</div>
<!–
<?php trackback_rdf(); ?>
–>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
</div>
</div><!– The main content column ends –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
\