Multiple Loops and Multiple Columns with WordPress, (X)HTML and CSS
by Jeff Starr on Monday, September 1, 2008 – 47 Responses
Recently, I have been getting a lot of requests for multiple-loop configurations in WordPress. It seems that multiple-column, multiple-loop configurations are in high demand these days, especially ones that display posts like this:
- First column, first loop: display posts #1-5
- Second column, second loop: display posts #6-10
- Third column, third loop: display posts #11-15
Using WordPress and a little CSS, this configuration is relatively easy to accomplish. Let’s cut right to the chase..
Step 1: Multiple-Loop, Multiple Column PHP Configuration
The first thing we want to do is replace the standard WordPress loop with the following code:
// FIRST LOOP: display posts 1 thru 5
<?php query_posts('showposts=5'); ?>
<?php $posts = get_posts('numberposts=5&offset=0'); foreach ($posts as $post) : start_wp(); ?>
<?php static $count1 = 0; if ($count1 == "5") { break; } else { ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php $count1++; } ?>
<?php endforeach; ?>
// SECOND LOOP: display posts 6 thru 10
<?php query_posts('showposts=5'); ?>
<?php $posts = get_posts('numberposts=5&offset=5'); foreach ($posts as $post) : start_wp(); ?>
<?php static $count2 = 0; if ($count2 == "5") { break; } else { ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php $count2++; } ?>
<?php endforeach; ?>
// THIRD LOOP: display posts 11 thru 15
<?php query_posts('showposts=5'); ?>
<?php $posts = get_posts('numberposts=5&offset=10'); foreach ($posts as $post) : start_wp(); ?>
<?php static $count3 = 0; if ($count3 == "5") { break; } else { ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php $count3++; } ?>
<?php endforeach; ?>
That’s the juice right there. We have three loops, each displaying five posts. The first loop displays the first five posts, the second loop displays the next five posts, and the third loop displays the next five posts. Thus, this multiple-loop configuration displays the most recent 15 posts, each of which being unique.
To change the number of posts displayed for any given loop, you will need to edit three different arguments:
showposts=5numberposts=5&offset=0$count1 == "5"
Notice the pattern here: for the first loop, we are showing the first five posts. The number of posts is set by the showposts=5, numberposts=5, and $count1 == "5". The first two arguments are self-explanatory, and the third simply stops the loop when the indicated number of posts has been processed.
Thus, to change the number of posts displayed in the first loop, change the number “5” to the desired number of displayed posts. After that, you need only specify the loop offset parameter, which lets WordPress know how many posts to skip before displaying the specified number of posts. For example, an offset value of “0” is used in the first loop so that no posts are skipped and the first five posts are displayed. Then, because the first loop displays the first five loops, we use an offset value of “5” in the second loop so that the loop skips over the first five posts and displays the next five posts in the sequence. Likewise, an offset value of “10” in the third loop ensures that the first 10 posts displayed in the first two loops are not repeated. Thus, if you wanted to display 10 posts in the first loop, the offset value in the second loop would be “10”.
Step 2: Multiple-Loop, Multiple Column (X)HTML Configuration
Now that we have the PHP in place, we are ready to add the (X)HTML markup required for the final three-column configuration. There are many ways to accomplish this, this is merely one of them:
<div id="column_01">
<!-- FIRST LOOP -->
</div>
<div id="column_wrap">
<div id="column_02">
<!-- SECOND LOOP -->
</div>
<div id="column_03">
<!-- THIRD LOOP -->
</div>
</div>
Here, each of the three loops will be placed into its own div, which then will be styled with a little CSS to transform it into one of the three columns. Note that you may want to change the id names of the divisions to better represent the particular semantics of your document. Now let’s move on to the CSS..
Step 3: Multiple-Loop, Multiple Column CSS Configuration
The final step in the tutorial is to style the markup with CSS. Nothing too fancy, really. Creating the columns is merely a matter of floating the individual divs and applying a width to each of them:
/* three column layout */
div#column_01 {
float: left;
clear: none;
width: 30%;
}
div#column_wrap {
float: right;
clear: none;
width: 60%;
}
div#column_02 {
float: left;
clear: none;
width: 45%;
}
div#column_03 {
float: right;
clear: none;
width: 45%;
}
The trick here is to use width values that will create the correct column widths. The values used in the example produce three columns of approximately equal width. A great way to check how your width values are actually affecting layout is to add the following line of code to each selector:
border: thin solid red;
Adding that declaration to each of the four code blocks will create an outline around each of your divisions, enabling you to see easily the amount of space between each column. I use this trick all the time — it’s a real time-saver. Beyond that, you may specify the width in any units that you wish (e.g., em, px); no need to stick with percentages!
Warp Speed..
There is SO much you can do with WordPress, PHP, (X)HTML, and CSS. The possibilities are virtually endless. The multiple-column configuration presented in this article is a great starting point for creating more elaborate and sophisticated page layouts. Experiment and have fun!!






47 Responses
Erika – #1
Check your second set of code tags… it says “First Loop… Second Loop.. Second Loop…” ;)
Jeff Starr – #2
Thanks for the catch, Erika — fixed!! :)
Simon – #3
Hey congrats on making the 9rules list, it’s great to see your blog in there. Pity though you closed the htaccess for comments, I think it’s a great post, just can’t get this thing to work properly though..Cheers Simon
Jeff Starr – #4
Hi Simon, thanks for the congrats! I am looking forward to supporting the 9rules network. I am honored to be a part of it. As for the htaccess comments, I can only assume that you are referring to my article, “Stupid htaccess Tricks.” If so, yes, I was getting a ton of “drive-by” support questions that were really draining my time from more critical pursuits. Although there are many other htaccess posts from which to learn, I am also available for hire through my design site, Monzilla Media. In any case, thanks for dropping by — I appreciate the feedback! :)
Simon – #5
Haha I thought so that it was getting too intensive there. Yeah in any case keep it up!
Binh Nguyen – #6
Thanks for this article. It’s a good idea to have many loops. I really am interested in knowing how to get different loops based on categories, not offset.
Any idea?
Jeff Starr – #7
Hi Binh, to implement different loops based on categories, you can use the general techniques described in this article along with any number of category parameters. Simply modify your set of
query_postsloops with the desired category parameters and full control is yours.Binh Nguyen – #8
Thanks Jeff Starr for your great tip. Now I know out how to do it.
Jeff Starr – #9
My pleasure, Binh — happy to help! :)
Donace – #10
very useful post man, filed it away for when I have the time to work on a new (my first) theme.
Jeff Starr – #11
Thanks for dropping by, Donace — it’s great to see you again! :)
damir - SEO Tips – #12
Man, you are the king! I have been bookmarking many of your posts cause I like to customize my themes and every loop and trick you give, works awesome. I have found some other sites that offer codes and different loops but a lot of them just don’t work. Thank you.
Jeff Starr – #13
My pleasure, damir — thanks for the positive feedback! :)
nazerry – #14
dear jeff,
i’ve tried this method on xampp, and it works. but the problem is when i click the next page, it displayed the same post in the first page. can you help me out here?
thanks..
LuisRaa – #15
Hi Jeff:
i need to develop a website with posts in two columns (the center column and a sidebar column for certain categories) but i need to limit the words in the sidebar posts to mantain the design, i’ve try with the excerpt, but this limit to a few words and no apply to images, there is a code you can bring me to make this?
Im running 2 loops with diferent queries and i need help on this
thanks in advance
regards
Jeff Starr – #16
@LuisRaa: Have you looked into using the excellent Excerpt Reloaded plugin..? With it, you can configure just about anything you need, including excerpt length, type, format, and much more..
nazerry – #17
hi jeff, can u solve the paging problem?
Jeff Starr – #18
@nazerry: ..and which paging problem might that be..? If you are referring to the infamous
next_posts_linkandprevious_posts_linkpaging problem, I would recommend a thorough search on Google. The issue is very problematic for many people and I have only discovered temporary workarounds that I cannot recommend to the public..Viidar – #19
Very nice and informative!
Will definitely use this on the theme I am working on now!
Thanx!
davebach – #20
Great article… just what I’m looking for. I keep coming back to your site to learn a thing or two or three. I modified your complete code above to display excerpts and images for a category page I have (I’m going for a “grid” view). In comment #7 above, you suggest to Binh to modify query_posts() with the category parameters. I want to do the same thing, but I can’t seem to get it to work. I changed it to read query_posts(’cat=13&showposts=5′) but it still shows the last 15 posts of all categories.
What might I be doing wrong?
Muffin – #21
I want to do the same thing with a category template. How can I do this? cause right now it won’t show posts from that particular category
Jeff Starr – #22
@davebach, @Muffin: Perfect timing for both of you! I was getting so many requests for category-specific loop filtering that I just didn’t have time for them all, so I decided to write up a complete tutorial covering the entire process:
Fruit Loop: Separate any Number of Odd and Even Posts from any Category in WordPress
Fresh out the oven — posted earlier today! Enjoy :)
Paul Demers – #23
Thanks so much for this tutorial. I am just starting to really dig into Wordpress and this was a very clear explanation of a fundamental concept. Adding this site to my feedreader as we speak.
-Paul
davebach – #24
@ Jeff RE: davebach and muffin:
Thanks Jeff, Fruit Loops is another fine tutorial… what I ended up doing to the example you give in this post (so that I can achieve a three column “grid view” using excerpts… follow link above to see) is I added “cat=” to both query_posts and get_posts in each loop. This gave me the result I wanted, however I had to reduce the count to 4 per column because I (currently) have only 12 posts in that category… if it kept looking for more posts than I had it would give an error.
At some point I’d like to figure out how to get this into 4 columns (or rows of 4 across so that it reads newest to oldest… but I’m still learning the finer points of CSS and I couldn’t get it to look right with 4 excerpts, line break, 4 excerpts, line break, etc.)
Dave
Jeff Starr – #25
@Paul Demers: Great to hear, Paul! I look forward to sharing new WordPress articles with you! Welcome aboard! :)
@davebach: Good point about specifying post numbers that take into account the total overall number of posts. This is a very important point that catches many of us by surprise. Also, thanks for mentioning the chronological 4-column excerpt layout.. I like the idea and will try to fashion a solid tutorial on the subject within the next couple of weeks. Thanks for the idea! :)
Muffin – #26
I want to make my posts going from left to right instead of going from top to bottom. How can I do this?
Jeff Starr – #27
@Muffin: I think this article may provide some helpful information! ;)
Vangelis – #28
Hi Jeff, thanx for the great tutorial.
I want to display thumbs in a grid 4×4.
The first line with 4 thumbnails should be static with the last four posts.
The other three lines of the grid should go random without having duplicate posts with the first gridline.
Thxn in advance and sorry about my english :-)
Evangelos – #29
Hi Jeff,
and thnx for the fine tutorial.
Is there a chance to have random posts in the second loop without having duplicates.
There is a link of what i am trying to build:
http://www.koli-bri.net/neuheiten.php
(The thumbnails) First line stays and other lines give random post from the same category (refresh and check the lower three lines).
roger camara – #30
great code
when i try to go to next page with
it displays the same posts as on the main page…
my loop is in index.php
Michael – #31
Thank you very much for posting this tutorial. I found it very useful for a three-column multiple category loop I needed to build. Thanks.
Trackbacks / Pingbacks