|
|
@@ -6,17 +6,17 @@
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
|
|
|
- <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
|
|
|
+ <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
|
|
|
|
|
|
<header>
|
|
|
|
|
|
- <h1 class="single-title"><?php the_title(); ?></h1>
|
|
|
+ <h1 class="single-title" itemprop="headline"><?php the_title(); ?></h1>
|
|
|
|
|
|
- <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>
|
|
|
+ <p class="meta"><?php _e("Posted", "bonestheme"); ?> <data itemprop="datePublished" value="<?php echo the_time('Y-m-j'); ?>"><?php the_time('F jS, Y'); ?></data> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>
|
|
|
|
|
|
</header> <!-- end article header -->
|
|
|
|
|
|
- <section class="post_content clearfix">
|
|
|
+ <section class="post_content clearfix" itemprop="articleBody">
|
|
|
<?php the_content(); ?>
|
|
|
|
|
|
|