evens & odds by columns
-
Hello!
Need to print post this way:
1 2
3 4
5 6
Show more..
And I’m getting allways:
1 1
2 2
3 3
4 4
5 5
Can somebody help me with this issue?
Thanks in advance for your help!!Here is the code:
<div class="row"> <div class="col-md-6"> <ul class="media"> <?php while (have_posts()) : the_post(); ?><?php // loop through posts discarding evens ?> <li class="media"> <?php the_post_thumbnail('thumbnail'); ?> <h3 class="grey"><a>" rel="bookmark"><?php the_title(); ?></a></h3> <?php endwhile; ?> </div> <div class="col-md-6"> <ul class="media"> <?php while (have_posts()) : the_post(); ?><?php // loop through posts discarding odds ?> <li class="media"> <?php the_post_thumbnail('thumbnail'); ?> <h3 class="grey"><a>" rel="bookmark"><?php the_title(); ?></a></h3> <?php endwhile; ?> </div> </div>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘evens & odds by columns’ is closed to new replies.