Hi Everyone
I'm having problems getting the post author to show up using <?php the_author_meta('description') ?>
Can't really see what I've done wrong.
This is the page: http://whoshouldicheerfor.wdm.org.uk/blog
This is my loop:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="entry">
<small><?php the_time('F jS, Y') ?> by <?php the_author_meta('description') ?></small>
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<p class="postmetadata">
Posted in <?php the_category(', ') ?>
<strong>|</strong>
<?php edit_post_link('Edit','','<strong>|</strong>'); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
</div>
<?php endwhile; endif; ?>