Post metadata not displaying
-
On my site’s blog, the post metadata isn’t displaying- no author, date,comment info,etc. There is only the post title and the actual post.
I’m customizing Kubrick for this theme, and it uses a custom template that is simply a copy of the original index.php template.
Here is the loop from the corresponding page:
<?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> by <?php the_author() ?></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?>The page is http://worthidomains.ipower.com/blog/
(Please note this design is not mine!!)Anyone have any ideas to help me out? Thanks!
The topic ‘Post metadata not displaying’ is closed to new replies.