Hello there!
I am using the Intaglio WP Theme currently and it would appear as though the creator of this theme decided to take out the author coding, so while it says, "Posted in:" and then lists the categories, it does not say who actually posted the topic.
I'm running what will at some point in the, hopefully near future, be a community site where more than just me posts things. Can someone help me out with some code for this because I am absolutely boggled by how to get this working again.
Single Post Code:
<?php get_header(); ?>
<div id="main">
<?php while(have_posts()) : the_post(); ?>
<div id="featured_content">
<em><?php the_date('j M Y');?></em><?php the_date('l');?><em><?php the_date('y');?></em><h2 id="single"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<span class="jump_comments"><a href="#comments_jump">Jump to comments</a></span>
<div class="clear"></div>
</div>
<div id="content">
<div id="reading">
<span class="post_meta">Posted in: <?php the_category('•'); ?></span>
<div class="post"><?php the_content(); ?></div>
<span class="post_meta_tags"><br/><br/><?php the_tags('Tags: ', ' • ', '<br />'); ?></span>
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Theme: Intaglio
My Website: Faeblight Gazette
Thank you for any help you can provide. I assure you, I will appreciate it immensely!