Skip to content

Instantly share code, notes, and snippets.

@lilumi
Created January 17, 2014 11:50
Show Gist options
  • Save lilumi/8472199 to your computer and use it in GitHub Desktop.
Save lilumi/8472199 to your computer and use it in GitHub Desktop.
Вивід постів в дві колонки 1 2 3 4 5 6
<?php if (have_posts()) : $i=1; ?>
<div class="wrap-box">
<?php while (have_posts()) : the_post(); ?>
<div class="half-box<?php if ($i%2 == 0) echo ' even'; ?>">
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
</div>
<?php $i++; endwhile; ?>
</div>
<?php endif;?>
.wrap-box {
overflow: hidden;
}
.half-box {
width: 50%;
float: left;
}
.half-box.even {
float: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment