Kriesi.at – new media design

Wordpress: Display Content in multiple Columns

Recently I had to create a website which displays the content in 2 columns.

While CSS 3 is capable of doing this on its own with the new Grid Position Module, a lot of browsers do not support this functions yet, so I needed to add a little extra markup to the output which is generated via the_content() to get the following result:


To get this result we need to filter the_content() before output with a custom function and add 2 divs to the output, which we style with CSS later on. So Ladys and Gentleman please open the functions.php file of your current WordPress Theme.

What functions.php does is let you create functions you can reuse in your theme. It works similar to a plugin file, being loaded when the theme is first loaded.

First of all: here you can see the whole code we need to filter our content, step by step description follows:

function my_multi_col($content){
$columns = explode('<h2>', $content);

$i = 0;

	foreach ($columns as $column){
	if (($i % 2) == 0){
		$return .= '<div class="content_left">' . "\n";
		if ($i > 1){
		$return .= "<h2>";
	} else{
		$return .= '<div class="content_right">' . "\n <h2>";
	}
		$return .= $column;
		$return .= '</p></div>';
		$i++;
	}

	if(isset($columns[1])){
	    $content = wpautop($return);
	}else{
	    $content = wpautop($content);
	}
	echo $content;
}
add_filter('the_content', 'my_multi_col');

What we do first is define a delimiter and split the whole content at specific points. I wanted to create a new column whenever a h2 tag was found.

$columns = explode('<h2>', $content);

The result is stored in an array which we will use to create a new $content string. To access each array item we will use a foreach loop:

        $i = 0;

	foreach ($columns as $column){
        $i++;
	}

You should have noticed the variable $i by now, we will use it to check if the current content part should be stored in a left column or right column div. To accomplish this we simply use the modulo operation ( $i % 2).

The modulo operator divides the first integer by the second and returns the remainder. Since we divide by 2 there are only 2 possible values to return: 0 and 1. If zero is returned we need a left content div, if 1 is returned a right content div:

        $i = 0;
	foreach ($columns as $column){
            if (($i % 2) == 0){
                $return .= '<div class="content_left">' . "\n";
            }else{
                $return .= '<div class="content_right">' . "\n";
            }
        $i++;
	}

Since the explode function we used earlier strips away our <h2> opening tags we need to add them to the code again, but we must be careful were to add them: We always need an opening tag in the right column and always need an opening tag in the left column except for the first time!

$i = 0;

	foreach ($columns as $column){
	if (($i % 2) == 0){
		$return .= '<div class="content_left">' . "\n";
		if ($i > 1){
		$return .= "<h2>";
	} else{
		$return .= '<div class="content_right">' . "\n <h2>";
	}

	}

After adding the opening tags we simply put in the exploded $content parts and close the current <p> (automatically generated by WordPress) and <div> tag. After creating our new content string which is currently stored as a whole in $return we pass it to the wpautop which automatically adds formating to the string, store it in $content and then output it with echo, but ONLY if there was an h2 tag found. Otherwise we don't need a second column and display the_content() without modifications.

$i = 0;

	foreach ($columns as $column){
	if (($i % 2) == 0){
		$return .= '<div class="content_left">' . "\n";
		if ($i > 1){
		$return .= "<h2>";
	} else{
		$return .= '<div class="content_right">' . "\n <h2>";
	}
		$return .= $column;
		$return .= '</p></div>';
		$i++;
	}

        if(isset($columns[1])){
	    $content = wpautop($return);
	}else{
	    $content = wpautop($content);
	}	echo $content;
}

Last but not least we have to tell WordPress when to activate our function. This is simply done with "add_filter"

add_filter('the_content', 'my_multi_col');

Now whenever $content contains any h2 items they will be put in different divs . Just add some basic CSS and you are done:

.content_right, .content_left{
float:left;
width:45%;
}

.content_left{
padding-right:5%;
}

The function we created is far from perfect, but the main goal of this tutorial is to show you how you can modify the output of the WordPress generated content in an easy way. Have fun doing so ;)

Responses to “Wordpress: Display Content in multiple Columns”

Trackbacks

  1. ¿Cómo desplegar contenido en múltiples columnas en Wordpress?
  2. silicon guru » Blog Archive » Wordpress tips
  3. Wordpress: mostrare un articolo su due colonne — Studio404 Web Agency
  4. ¿Cómo desplegar contenido en múltiples columnas en Wordpress? « Diegogalmarini’s Weblog
  5. Rob Searles » Wordpress: Multiple Content Columns
  6. Thesis Tips #3 – Multiple content areas - Bill Erickson, Wordpress Consultant
  7. WordPress hack : Automatically output the content in two columns
  8. Contenido en dos columnas | Ayuda WordPress
  9. Aktuelle Links (gespeichert vom 24.11.2009 bis zum 25.11.2009) « Der Webanhalter
  10. Thesis Tips #3 – Multiple content areas
  11. WwW.UrbaNicaNo.Net || Tu Web De Reggaetón & Eventos Urbanos » Contenido en dos columnas
  12. Wordpress- Mostrar conteúdo dos posts em 2 colunas - MUIOMUIO.NET
  13. 22 Latest Exceptional WordPress Hacks | EzTips | Wordpress Tips - Tutorials - Make Money Online
  14. Display Content in multiple Columns | Design resoures,Design technology,photoshop,photoshop plugins,photoshop tutorials,illustrator,icons-BENSBLOG
  15. Præsentationsportfolio for Thomas Riis » Blog Archive » Portfolio i to koloner
  16. Experts Developers
  17. 37 Cool Wordpress Hacks And Tutorials You Should Try |
  18. Esta semana en Twitter: 30-01-2010 | ceslava - Diseño y Formación
  19. Artigos em duas Colunas no Wordpress
  20. Como colocar os Artigos em duas Colunas no Wordpress.
  21. 37?Wordpress???? | ?7??
  22. 37?Wordpress???? | ???
  23. PHP-help » 22 Latest Exceptional WordPress Hacks

Leave a Reply