Skip to content

Commit

Permalink
fix google structured data errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NorikDavtian committed May 15, 2014
1 parent ce98f7f commit 8911b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/template-tags.php
Expand Up @@ -195,7 +195,7 @@ function bigblank_post_nav() {
*/
function bigblank_posted_on() {
// Set up and print post meta information.
printf('<a href="%1$s" class="entry-date" rel="bookmark" ' . schema('url', false, false) . '><time class="published" datetime="%2$s" ' . schema('datePublished', false, false) . '>%3$s</time></a> <a class="author vcard url fn n" href="%4$s" rel="author" ' . schema('author', false, false) . '>%5$s</a>', esc_url(get_permalink()), esc_attr(get_the_date('c')), esc_html(get_the_date()), esc_url(get_author_posts_url(get_the_author_meta('ID'))), get_the_author());
printf('<a href="%1$s" class="entry-date updated" rel="bookmark" ' . schema('url', false, false) . '><time class="published" datetime="%2$s" ' . schema('datePublished', false, false) . '>%3$s</time></a> <a class="author vcard url" href="%4$s" rel="author" ' . schema('author', false, false) . '><span class="fn">%5$s</span></a>', esc_url(get_permalink()), esc_attr(get_the_date('c')), esc_html(get_the_date()), esc_url(get_author_posts_url(get_the_author_meta('ID'))), get_the_author());
}

endif;
Expand Down

0 comments on commit 8911b38

Please sign in to comment.