Dateline
I’ve had the dateline sitting up there below every post title as mere information. This is how the dateline code looked on my site earlier.
<?php the_time('l, j F Y'); ?>
I wrote a short piece of code to replace the above:
// Get the post date<?php$arc_day = get_the_time('j');$arc_month = get_the_time('m');$arc_year = get_the_time('Y');?>// Converting'em into linkable dates<?php the_time('l'); ?>,<a href="<?php echo get_day_link($arc_year, $arc_month, $arc_day); ?>"><?php the_time('jS') ?></a><a href="<?php echo get_month_link($arc_year, $arc_month); ?>"><?php the_time('F') ?></a><a href="<?php echo get_year_link($arc_year); ?>"><?php the_time('Y') ?></a>- Download this example: /inputfiles/dateline.txt
It’s fun to put your post related meta-data to work. Yes?