<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Multiple Content Areas</title>
	<atom:link href="http://www.billerickson.net/wordpress-thesis-multiple-content-areas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/</link>
	<description>WordPress Consulting</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:58:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: robert</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4616</link>
		<dc:creator>robert</dc:creator>
		<pubDate>Wed, 21 Sep 2011 17:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4616</guid>
		<description>Fantastic solution to WP columns.
But I&#039;m having problems, could you have a look?

WP 3.2.1  / Thesis 1.8

In custom.css
.a-test-columns .column {width: 30%; float: left; padding-right: 10px;}
.a-test-columns #content-1 {width: 175px;}
.a-test-columns #content-2 {width: 175px;}
.a-test-columns #content-3 {width: 175px;}


In custom_functions.php
add_filter(&#039;the_content&#039;, &#039;multi_content&#039;);
 function multi_content($content){
 $columns = explode(&#039;&#039;, $content);
 $i = 0;
 foreach ($columns as $column){
 $return .= &quot;&quot; . &quot;\n&quot;;
 if ($i &gt; 1) $return .= &quot;&quot;;
 $return .= $column;
 $return .= &#039;&#039;;
 $i++;
 }
 if(isset($columns[1]))
 $content = wpautop($return);
 else
 $content = wpautop($content);
 return $content;
}

http://www.graphics-i-design.com/a-test-columns/
Column 1
Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1.

Column 2
Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2

Column 3
Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2

Any comments very appreciated, I like your solution to WP columns.
-robert</description>
		<content:encoded><![CDATA[<p>Fantastic solution to WP columns.<br />
But I&#8217;m having problems, could you have a look?</p>
<p>WP 3.2.1  / Thesis 1.8</p>
<p>In custom.css<br />
.a-test-columns .column {width: 30%; float: left; padding-right: 10px;}<br />
.a-test-columns #content-1 {width: 175px;}<br />
.a-test-columns #content-2 {width: 175px;}<br />
.a-test-columns #content-3 {width: 175px;}</p>
<p>In custom_functions.php<br />
add_filter(&#8216;the_content&#8217;, &#8216;multi_content&#8217;);<br />
 function multi_content($content){<br />
 $columns = explode(&#8221;, $content);<br />
 $i = 0;<br />
 foreach ($columns as $column){<br />
 $return .= &#8220;&#8221; . &#8220;\n&#8221;;<br />
 if ($i &gt; 1) $return .= &#8220;&#8221;;<br />
 $return .= $column;<br />
 $return .= &#8221;;<br />
 $i++;<br />
 }<br />
 if(isset($columns[1]))<br />
 $content = wpautop($return);<br />
 else<br />
 $content = wpautop($content);<br />
 return $content;<br />
}</p>
<p><a href="http://www.graphics-i-design.com/a-test-columns/" rel="nofollow">http://www.graphics-i-design.com/a-test-columns/</a><br />
Column 1<br />
Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1Test column 1.</p>
<p>Column 2<br />
Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2</p>
<p>Column 3<br />
Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2Test Column 2</p>
<p>Any comments very appreciated, I like your solution to WP columns.<br />
-robert</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4573</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Mon, 12 Sep 2011 20:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4573</guid>
		<description>Either way should work. Your way is probably best since it keeps all that template&#039;s code in a single file, but my approach would work regardless of your template structure (I can&#039;t advise on how to modify your code without seeing it, so I had to modify mine)</description>
		<content:encoded><![CDATA[<p>Either way should work. Your way is probably best since it keeps all that template&#8217;s code in a single file, but my approach would work regardless of your template structure (I can&#8217;t advise on how to modify your code without seeing it, so I had to modify mine)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynne Good-Miller</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4572</link>
		<dc:creator>Lynne Good-Miller</dc:creator>
		<pubDate>Mon, 12 Sep 2011 20:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4572</guid>
		<description>Actually - I just put the code on the page template itself and it works - is that the best way to do it if I only want it when certain templates are used?</description>
		<content:encoded><![CDATA[<p>Actually &#8211; I just put the code on the page template itself and it works &#8211; is that the best way to do it if I only want it when certain templates are used?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4571</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Mon, 12 Sep 2011 20:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4571</guid>
		<description>Modify this line:

&lt;code&gt; if(isset($columns[1]))&lt;/code&gt;

To this:

&lt;code&gt; if( isset( $columns[1] ) &amp;&amp; is_page_template( &#039;3coltemplate.php&#039; ) )&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Modify this line:</p>
<p><code> if(isset($columns[1]))</code></p>
<p>To this:</p>
<p><code> if( isset( $columns[1] ) &#038;&#038; is_page_template( '3coltemplate.php' ) )</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynne Good-Miller</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4570</link>
		<dc:creator>Lynne Good-Miller</dc:creator>
		<pubDate>Mon, 12 Sep 2011 20:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4570</guid>
		<description>I would like to use this for a page template - maybe using if ( is_page_template(&#039;3coltemplate.php&#039;)) {

I am having some problems - how would I incorporate this if I only want it executed if I use a certain page template?

Thank you so much!</description>
		<content:encoded><![CDATA[<p>I would like to use this for a page template &#8211; maybe using if ( is_page_template(&#8217;3coltemplate.php&#8217;)) {</p>
<p>I am having some problems &#8211; how would I incorporate this if I only want it executed if I use a certain page template?</p>
<p>Thank you so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-4569</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 12 Sep 2011 13:54:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-4569</guid>
		<description>Thanks for code! But I found mistake. At the 7th line of code it should be &quot; if ($i &gt; 0) $return .= &quot;&quot;;&quot; instead of what is now. Of course I you use only columns in your content.</description>
		<content:encoded><![CDATA[<p>Thanks for code! But I found mistake. At the 7th line of code it should be &#8221; if ($i &gt; 0) $return .= &#8220;&#8221;;&#8221; instead of what is now. Of course I you use only columns in your content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-1777</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Mon, 21 Mar 2011 21:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-1777</guid>
		<description>Can you provide a link to the page you&#039;re trying to do this on?</description>
		<content:encoded><![CDATA[<p>Can you provide a link to the page you&#8217;re trying to do this on?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-1776</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Mon, 21 Mar 2011 20:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-1776</guid>
		<description>Hi.

I can&#039;t get this to work on my site (WP 3.1 and newest Thesis version)

I have setup things exactly as described and I can see that the correct &#039;s are inserted in the code.

In the custom.css file I have inserted the lines below but nothing changes on my pages. (I have double checked that custom css is enabled in Thesis!).

.custom .column {float: left;}
.custom #content-0 {width: 400px;}
.custom #content-1 {width: 150px;}
.custom #content-2 {width: 150px;}

I hope someone can help me out.</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>I can&#8217;t get this to work on my site (WP 3.1 and newest Thesis version)</p>
<p>I have setup things exactly as described and I can see that the correct &#8216;s are inserted in the code.</p>
<p>In the custom.css file I have inserted the lines below but nothing changes on my pages. (I have double checked that custom css is enabled in Thesis!).</p>
<p>.custom .column {float: left;}<br />
.custom #content-0 {width: 400px;}<br />
.custom #content-1 {width: 150px;}<br />
.custom #content-2 {width: 150px;}</p>
<p>I hope someone can help me out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Erickson</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-1633</link>
		<dc:creator>Bill Erickson</dc:creator>
		<pubDate>Mon, 07 Feb 2011 14:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-1633</guid>
		<description>You&#039;ll need to build a custom page template for the homepage that simulates the look and feel of the teasers but does what you want. The problem is teasers are in rows, not columns (one on left, one on right, then one below on left...). You&#039;ll need to rebuild it as columns if you want each column to show posts from a separate category. Alternatively, you could make each row of the teasers show two posts from a specific category.

This tutorial should help: http://www.berchman.com/thesis-tutorial-multiple-custom-page-templates/</description>
		<content:encoded><![CDATA[<p>You&#8217;ll need to build a custom page template for the homepage that simulates the look and feel of the teasers but does what you want. The problem is teasers are in rows, not columns (one on left, one on right, then one below on left&#8230;). You&#8217;ll need to rebuild it as columns if you want each column to show posts from a separate category. Alternatively, you could make each row of the teasers show two posts from a specific category.</p>
<p>This tutorial should help: <a href="http://www.berchman.com/thesis-tutorial-multiple-custom-page-templates/" rel="nofollow">http://www.berchman.com/thesis-tutorial-multiple-custom-page-templates/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.billerickson.net/wordpress-thesis-multiple-content-areas/comment-page-1/#comment-1632</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Mon, 07 Feb 2011 11:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.billerickson.net/?p=1377#comment-1632</guid>
		<description>Hi,
Do you know how to tell Thesis to have teasers on the homepage, but have one column dedicated to one category and a second column dedicated to another category?
What I would like to do is post MANY news articles per day, but not let this drown out my other types of posts on the homepage (posted only twice a week).
Thanks for any help you can offer.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Do you know how to tell Thesis to have teasers on the homepage, but have one column dedicated to one category and a second column dedicated to another category?<br />
What I would like to do is post MANY news articles per day, but not let this drown out my other types of posts on the homepage (posted only twice a week).<br />
Thanks for any help you can offer.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

