|
@@ -45,12 +45,17 @@
|
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class( 'cf' ); ?> role="article">
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class( 'cf' ); ?> role="article">
|
|
|
|
|
|
|
|
- <header class="article-header">
|
|
|
|
|
|
|
+ <header class="entry-header article-header">
|
|
|
|
|
|
|
|
<h3 class="h2 entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
|
|
<h3 class="h2 entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
|
|
|
- <p class="byline vcard"><?php
|
|
|
|
|
- printf(__( 'Posted', 'bonestheme' ) . ' <time class="updated" datetime="%1$s" itemprop="datePublished">%2$s</time> ' . __('by', 'bonestheme' ) . ' <span class="author">%3$s</span> <span class="amp">&</span> ' . __('filed under', 'bonestheme') . ' %4$s.', get_the_time('Y-m-j'), get_the_time(__( 'F jS, Y', 'bonestheme' )), get_the_author_link( get_the_author_meta( 'ID' ) ), get_the_category_list(', '));
|
|
|
|
|
- ?></p>
|
|
|
|
|
|
|
+ <p class="byline entry-meta vcard">
|
|
|
|
|
+ <?php printf( __( 'Posted %1$s by %2$s', 'bonestheme' ),
|
|
|
|
|
+ /* the time the post was published */
|
|
|
|
|
+ '<time class="updated entry-time" datetime="' . get_the_time('Y-m-d') . '" itemprop="datePublished">' . get_the_time(get_option('date_format')) . '</time>',
|
|
|
|
|
+ /* the author of the post */
|
|
|
|
|
+ '<span class="by">by</span> <span class="entry-author author" itemprop="author" itemscope itemptype="http://schema.org/Person">' . get_the_author_link( get_the_author_meta( 'ID' ) ) . '</span>'
|
|
|
|
|
+ ); ?>
|
|
|
|
|
+ </p>
|
|
|
|
|
|
|
|
</header>
|
|
</header>
|
|
|
|
|
|