Skip to content

Commit

Permalink
Added hAtom hEntry and h-Entry to Left Stage VOICES + SCOOPS
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Bulatov committed Feb 13, 2016
1 parent fb04bee commit 02c5d8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wp-content/themes/mag-wp/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@

<div class="main-stage-left">

<div class="main-stage-latest latest-news">
<div class="main-stage-latest latest-news hfeed h-feed">
<div class="line-box">
<div class="header_line">
<h4 class="top"><a href="/news/" titles="VOICES">SCOOPS</a></h4>
Expand All @@ -292,7 +292,7 @@
'order' => 'DESC');
query_posts( $args ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class="<?php $category = get_the_category();
<li class="hentry h-entry <?php $category = get_the_category();
if ($category) {echo $category[0]->name ;} ?>">
<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>">
Expand All @@ -316,7 +316,7 @@
<?php endwhile; endif; wp_reset_query(); ?>
</ul>
</div>
<div class="main-stage-latest latest-voices">
<div class="main-stage-latest latest-voices hfeed h-feed">
<div class="line-box">
<div class="header_line">
<h4 class="top"><a href="/voices/" titles="VOICES">VOICES</a></h4>
Expand All @@ -334,7 +334,7 @@
'order' => 'DESC');
query_posts( $args ); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class="<?php $category = get_the_category();
<li class="hentry h-entry <?php $category = get_the_category();
if ($category) {echo $category[0]->name ;} ?>">
<div class="entry-thumbnail">
<a href="<?php the_permalink(); ?>">
Expand Down

0 comments on commit 02c5d8f

Please sign in to comment.