Created
January 17, 2014 11:50
-
-
Save lilumi/8472199 to your computer and use it in GitHub Desktop.
Вивід постів в дві колонки 1 2
3 4
5 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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;?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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