Adding Date & Time to posts & Comments
-
Hi there… I was wondering if anyone can help me out with my site. I am not too good when it comes to coding and what not, most of the stuff I learned on my own so some of it doesn’t quite make sense to me.
Anyway, here’s my dilema: I am using a new theme on my site https://www.voodooenvy.com, and I’ve spent a lot of time trying to modify it. Right now, the problem I have is with the date and time showing on posts and pages… can anyone help me with this?
Here’s my page php:
<?php get_header(); ?><div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php link_pages('<p>Pages: ', '</p>', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>
Can anyone help me out with this? I would greatly appreciate it!
- The topic ‘Adding Date & Time to posts & Comments’ is closed to new replies.