I am creating my first ever wordpress theme(and first time really using wordpress).
I am trying to get my date and comment count to be included in the loop even though I have it on the left in a sidebar and I can't figure out how to include it.
Here is my code for the post (it includes the date, comment count, and post in that order with the post being part of the loop only currently) :
(I am using the 960 grid so you may see grid classes below)
<div class="date_banner">
<div class="d"><!-- sidebar 1 --><?php the_time('d'); ?></div>
<div class="m"><!-- sidebar 1 --><?php the_time('M'); ?></div>
<div class="y"><!-- sidebar 1 --><?php the_time('Y'); ?></div>
</div>
<div class="commentsnumber">
<?php comments_number('No comment', '1 comment', '% comments'); ?>
</div>
</div>
<div class="grid_10">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- post -->
<div class="post">
<div class="titlepostauthorimage">
<div class="post-title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
<div class="post-author-image">
</div>
<div class="post-author">
<?php the_author_posts_link(); ?>
</div>
<div class="post-image">
<?php the_post_thumbnail( $size, $attr ); ?>
</div>
</div>
<div class="post-bodyborder">
<div class="post-body">
<?php the_content(); ?>
</div>
</div>
<div class="post-metaborder">
<div class="post-meta">
<?php the_category(', '); ?>
<!-- post tags -->
</div>
</div>
<div class="post-comments">
<?php wp_list_comments( $args ); ?>
</div>
</div>
<!-- post -->
<?php endwhile; else: ?>
<!-- In case no posts were found -->
<h1>Hmmm? Cam't. Find. Post.</h1>
<?php endif; ?>
Here is what happens when I move the loop to above the date in the code in a test:
the inspector says that in the first grid_10 class the date and comment count are below the post:

Here is what my finished theme is supposed to look like and you can check out my work in progress at http://benlevywebdesign.com/wordpress/ (only the post is in the loop, the screen shots from above were a test/example of what happens when I just move the loop code)
