Skip to content

Instantly share code, notes, and snippets.

@jayseventwo
Created July 23, 2013 05:12
Show Gist options
  • Save jayseventwo/6060002 to your computer and use it in GitHub Desktop.
Save jayseventwo/6060002 to your computer and use it in GitHub Desktop.
In wordPress, when more than 1 post is added per day, the date only shows for the first post. This fixes that issue. Add to content.php
/* --- replace this --*/
<time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_date(); ?></time>
/* -- with this */
<time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time(get_option('date_format')); ?></time>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment