Multiple Content Areas

This post has been marked as old. The code might no longer work. Comments have been disabled as this is no longer maintained. Use the search on the right to find a newer tutorial.

I’m closing the comments on this as it’s a very old technique that I no longer use or recommend. A much better option is to use Column Classes in your CSS file, then use the Div Shortcode Plugin to make it easy to create columns in your pages.

WordPress works great if you want to display a title and then a block of content, but if you’re using it as a CMS you’ll often be faced with the problem of multiple content areas. You might need multiple boxes on a homepage, or 3 columns of text on an inner page.

There’s many ways to go about this. Some of them include:

  • Including <div>‘s in your post content. This will work well for a developer who understands code, but for clients it is not usually a good option. They will typically work in the Visual mode, and can easily delete or break the<div>‘s, then not know how to add them back in HTML mode.
  • Using sidebars and widgets to display content. This is good for one-off things like sidebars (same across the site) or boxes on a homepage (only used once), but it doesn’t scale well – you don’t want 20 different sidebars for different areas of your site. It also disconnects the content from the page. It’s nice to have all the content that will appear on a page editable in the same place. (This goes back to my principle of making client’s sites easy to use and hard to break).
  • Using a shortcode to break content up into multiple columns. Ex: [column id=”1″] text in column 1 [/column] [column id=”2″] text in column 2[/column]. I think this is a great solution, but the solution outlined below is a little easier for  non-technical people to use.
  • Adding an additional WYSIWYG meta box to the page editor for the second column. Again, this is a good solution but I believe the one outlined below is easier. The solution below also allows you to determine the number of columns on a per-page basis rather than a per-site basis like a meta box.

For a project I’m working on now we needed two or three columns of content on every page (here’s an example on the client’s site). All the blocks of content are unique to that page. This solution was inspired by a post at kriesi.at, but I’ve modified it with the help of Chris Bratlien to make as many content areas as you like (the code from that post only creates a left column and a right column).

The Content

When you’re writing your content in WordPress, simply break up the content sections using an <h4> heading. I chose <h4> because it’s easily accessible from the menu bar. Select the text you want as your heading, click on the last icon in the menu( )  then click where it says Paragraph and go down to Heading 4. You could change this to whatever heading you’d like; I chose Heading 4 because for this project we only used <h1>, <h2> and <h3>.

The Code

In your functions.php file (custom_functions.php file for Thesis), paste the following code:

add_filter('the_content', 'multi_content');
 function multi_content($content){
 $columns = explode('<h4>', $content);
 $i = 0;
 foreach ($columns as $column){
 $return .= "<div class=\"column\" id=\"content-$i\">" . "\n";
 if ($i > 1) $return .= "<h4>";
 $return .= $column;
 $return .= '</div>';
 $i++;
 }
 if(isset($columns[1]))
 $content = wpautop($return);
 else
 $content = wpautop($content);
 return $content;
}

Here’s what that is doing:

  • $columns = explode('<h4>', $content); Break up the content into separate blocks every time you find an <h4>.
  • $i = 0; Make a counter (called i) and start at 0.
  • foreach ($columns as $column){ For every block of content…
  • $return .= "<div class=\"column\" id=\"content-$i\">" . "\n"; Add a div with the class of “column” and the id of “content-[i]”, so content-0, content-1…
  • if ($i > 1){$return .= "<h4>";} If this is any block of content except the first, add back the <h4> (our first block of content was everything before the first <h4>, so we don’t want to add an additional one)
  • $return .= $column; $return .= '</div>'; $i++;} Add the block of content and close the div at the end. Then move the counter up one and start again.
  • if(isset($columns[1])) $content = wpautop($return); If there’s only one block of content (no <h4>‘s were used), ignore everything we did and just show the content.
  • else $content = wpautop($content);  return $content; } If there was more than one block of content, replace the default WordPress content with the div’s and content we just did.
  • add_filter('the_content', 'multi_content'); Run this filter every time WordPress wants to see the content of a post or page.

You’ll then need to add the appropriate css to make it behave as you like. If you want to apply css to all the columns, use the class “column.” If you want to add css to individual columns, use their id’s. Here’s an example:


.column {float: left;}
#content-0 {width: 400px;}
#content-1 {width: 300px;}

I hope that helps some of you. I know I will be using it a lot for client websites.

Bill Erickson

Bill Erickson is the co-founder and lead developer at CultivateWP, a WordPress agency focusing on high performance sites for web publishers.

About Me
Ready to upgrade your website?

I build custom WordPress websites that look great and are easy to manage.

Let's Talk

Reader Interactions

Comments are closed. Continue the conversation with me on Twitter: @billerickson

Comments

  1. Julie Gomoll says

    Awesome. Really eager to try this. How different is this solution than just tweaking the "Teaser" options in the Thesis Theme?

  2. Steve says

    Bill,
    This is a brilliant idea. I have tried it on a simple test site, (not using the thesis framework) just a barebones theme and have two Queries.

    This might be my initial example, it seems to an extra blank div "content-0" before the working divs of class "content-1" "content-2".

    The h4 heading appears in the div for me at the top working divs of "content-1" and "content-2", I would want the seperator h4 or whatever tag to clearly identify the sections on the input page, but not to display the h4 header text in the actual content divs on the output of the page. Is this possible? New to WP please be gentle with me.

    Steve

  3. Laura says

    Thanks Bill,
    Beautiful solution! It is just what I was looking for.

    With this, I had my pages all laid out in an hour! Yeah for WordPress, Thesis, CSS and Bill Erickson!

  4. Bill Erickson says

    Yes, this will allow you to do that. The code simply wraps your content in divs, so if you're content looked like this:

    lorem ipsum dolor sit amet

    <h4>Column title</h4>
    lorem ipsum dolor sit amet

    It would change it to:

    <div class=\”content\” id=\”content-0\”>
    lorem ipsum dolor sit amet
    </div>

    <div class=\”content\” id=\”content-1\”>
    <h4>Column title</h4>
    lorem ipsum dolor sit amet
    </div>

    You could then use CSS to do whatever you want with those two divs

  5. Judd Dunagan says

    Hello,

    I really like the post. The idea is simple enough and I was able to modify the functions page. I see the purpose of the H4 tag so you can use the editor, however doesn't this hurt results for search engines if you spam the h tags and I thought you are supposed to only put normal content inside h tags for best practices. So I did the div way, but thaat defeats the whole idea to make it easier for the client. I am at a lost because I have check out every option to make editble content areas on one page. A plug in that would allow you to add a div box specify the size and add css values would be the missing link for me. Any ideas?

  6. Amit Kumar Jha says

    I am new to the wordpress. I just pasted the above-mentioned code in the custom-functions.php file. I entered the following content into the wordpress text editor in page section. lorem ipsum dolor sit amet

    <h4>Column title</h4>
    lorem ipsum dolor sit amet

    But it did not yield any changes. I am completely new to the wordpress. So I am quite confused.Please help me. Thanks in advance.