I need to display the .entry-utility class in the #primary sidebar for several blog entries on a single page of the site I'm working on. I also would like to have control over how each of these .entry-utility classes appear in this column (I'd like to have them in-line with the title of each entry.)
Right now I can only generate this information for the first post on the page with the following function:
/*----------------------------------
Display Post Meta Data in side column
------------------------------------*/
function post_meta() {
//declare variable for use inside of function
global $wp_query;
//get the post ID# for current post
$postID = $wp_query->post->ID;
?>
<div id="primary" class="aside main-aside"><p>
<?php the_time('jS F Y') ?>
">Post a Comment</br>
<?php the_category(', ') ?>
</p></div><!-- end primary main aside -->
<?php
}
add_action('thematic_abovemainasides', 'post_meta');