Hello,
I want to make 3 columns and put articles, but it loops equally.
How to make that in every column posts could be different and must work page navigation? Thanks for answers.
Here is my code:
<div id="column_01">
<!-- FIRST LOOP -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<div>Nothing found</div>
<?php endif; ?>
</div>
<div id="column_wrap">
<div id="column_02">
<!-- SECOND LOOP -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<div>Nothing found</div>
<?php endif; ?>
</div>
<div id="column_03">
<!-- THIRD LOOP -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
<div>Nothing found</div>
<?php endif; ?>
</div>
</div>