Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
removed pubdate attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
olefredrik committed Jun 22, 2014
1 parent 899021e commit cee0622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/entry-meta.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
if(!function_exists('FoundationPress_entry_meta')) :
function FoundationPress_entry_meta() {
echo '<time class="updated" datetime="'. get_the_time('c') .'" pubdate>'. sprintf(__('Posted on %s at %s.', 'FoundationPress'), get_the_time('l, F jS, Y'), get_the_time()) .'</time>';
echo '<time class="updated" datetime="'. get_the_time('c') .'">'. sprintf(__('Posted on %s at %s.', 'FoundationPress'), get_the_time('l, F jS, Y'), get_the_time()) .'</time>';
echo '<p class="byline author">'. __('Written by', 'FoundationPress') .' <a href="'. get_author_posts_url(get_the_author_meta('ID')) .'" rel="author" class="fn">'. get_the_author() .'</a></p>';
}
endif;
Expand Down

0 comments on commit cee0622

Please sign in to comment.