Hi,
When stories are listed the date/comments/author appear before the excerpt.
I would like to change it to be date/author/comments as when their are many stories the authors name disappears.
Can you tell me where I can change this.
Thanks
karen
Hi,
When stories are listed the date/comments/author appear before the excerpt.
I would like to change it to be date/author/comments as when their are many stories the authors name disappears.
Can you tell me where I can change this.
Thanks
karen
Hey,
in single.php search for:
<span class="date ie6fix"><?php the_time('M d, Y') ?></span>
<span class="comments ie6fix"><?php comments_popup_link(__('No Comments','newscast'), __('1 Comment','newscast'), __('% Comments','newscast')); ?></span>
<span class="author ie6fix"><?php _e('by','newscast');?> <?php the_author_posts_link(); ?></span>
and replace it with:
<span class="date ie6fix"><?php the_time('M d, Y') ?></span>
<span class="author ie6fix"><?php _e('by','newscast');?> <?php the_author_posts_link(); ?></span>
<span class="comments ie6fix"><?php comments_popup_link(__('No Comments','newscast'), __('1 Comment','newscast'), __('% Comments','newscast')); ?></span>You must log in to post.