Reputation: 739
This is a simple and straightforward question. How do I set the post date as a link to archive of posts with the same date?
Upvotes: 2
Views: 3602
Reputation: 739
I figured it out.
<a href="<?php echo get_day_link(get_post_time('Y'), get_post_time('m'), get_post_time('j')); ?>" class="entry-date"><?php the_time('F j, Y') ?></a>
Upvotes: 10