<?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: Multi-Column Grid-Style Posts in WordPress</title>
	<atom:link href="http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template/feed" rel="self" type="application/rss+xml" />
	<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template</link>
	<description>for personal growth and transformation</description>
	<lastBuildDate>Wed, 25 Jan 2012 22:03:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Lai Shao Yi</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-6158</link>
		<dc:creator>Lai Shao Yi</dc:creator>
		<pubDate>Tue, 29 Nov 2011 23:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-6158</guid>
		<description>fixed. thank you.</description>
		<content:encoded><![CDATA[<p>fixed. thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lai Shao Yi</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-6157</link>
		<dc:creator>Lai Shao Yi</dc:creator>
		<pubDate>Tue, 29 Nov 2011 18:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-6157</guid>
		<description>Sorry to bother you.
I am astonished by your modified three column content list.
While I am confused with showing content like:
1 2 3
4 5 6
7 8 9

I&#039;ve checked your article: http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style
while that version doesn&#039;t have page navigation like above.
Would you please teach me how to modify like above?

Thank you very much.

Lai.</description>
		<content:encoded><![CDATA[<p>Sorry to bother you.<br />
I am astonished by your modified three column content list.<br />
While I am confused with showing content like:<br />
1 2 3<br />
4 5 6<br />
7 8 9</p>
<p>I&#8217;ve checked your article: <a href="http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style" rel="nofollow">http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style</a><br />
while that version doesn&#8217;t have page navigation like above.<br />
Would you please teach me how to modify like above?</p>
<p>Thank you very much.</p>
<p>Lai.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-6050</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Thu, 03 Nov 2011 04:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-6050</guid>
		<description>Thanks - your first guess works! You&#039;re the best. 

&lt;code&gt;$posts = get_posts(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset.&#039;&amp;cat=142&#039;);&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; your first guess works! You&#8217;re the best. </p>
<p><code>$posts = get_posts(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset.&#039;&amp;cat=142&#039;);</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-6045</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Wed, 02 Nov 2011 11:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-6045</guid>
		<description>possibly caused by mixing different syntaxes; try to change this line (which similar occurs three times):
&lt;code&gt;$posts = get_posts(array(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset, &#039;category&#039; =&gt; 142));&lt;!--formatted--&gt;&lt;/code&gt;
to:
&lt;code&gt;$posts = get_posts(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset.&#039;&amp;cat=142&#039;);&lt;!--formatted--&gt;&lt;/code&gt;
or to:
&lt;code&gt;$posts = get_posts(array(&#039;numberposts&#039; =&gt;$ppc, &#039;offset&#039; =&gt; $noffset, &#039;category&#039; =&gt; 142));&lt;!--formatted--&gt;&lt;/code&gt;
(untested)</description>
		<content:encoded><![CDATA[<p>possibly caused by mixing different syntaxes; try to change this line (which similar occurs three times):<br />
<code>$posts = get_posts(array(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset, &#039;category&#039; =&gt; 142));<!--formatted--></code><br />
to:<br />
<code>$posts = get_posts(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset.&#039;&amp;cat=142&#039;);<!--formatted--></code><br />
or to:<br />
<code>$posts = get_posts(array(&#039;numberposts&#039; =&gt;$ppc, &#039;offset&#039; =&gt; $noffset, &#039;category&#039; =&gt; 142));<!--formatted--></code><br />
(untested)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rachel</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-6044</link>
		<dc:creator>Rachel</dc:creator>
		<pubDate>Wed, 02 Nov 2011 03:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-6044</guid>
		<description>Thank you so much for posting this! You sure are generous with your time and expertise; it&#039;s mighty nice of you. 

I&#039;m trying to use your grid page template, but I need it to display teasers/excerpts of posts from only one category.

I tried editing this one line, and it almost worked....kinda. It showed only the one category, but each post in triplicate. No idea why.

&lt;code&gt;
$posts = get_posts(array(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset, &#039;category&#039; =&gt; 142));
&lt;/code&gt;

Can you help? I&#039;d sure appreciate it. Thanks.</description>
		<content:encoded><![CDATA[<p>Thank you so much for posting this! You sure are generous with your time and expertise; it&#8217;s mighty nice of you. </p>
<p>I&#8217;m trying to use your grid page template, but I need it to display teasers/excerpts of posts from only one category.</p>
<p>I tried editing this one line, and it almost worked&#8230;.kinda. It showed only the one category, but each post in triplicate. No idea why.</p>
<p><code><br />
$posts = get_posts(array(&#039;numberposts=&#039;.$ppc.&#039;&amp;offset=&#039;.$noffset, &#039;category&#039; =&gt; 142));<br />
</code></p>
<p>Can you help? I&#8217;d sure appreciate it. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-5972</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Sun, 23 Oct 2011 10:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-5972</guid>
		<description>a web search &#039;wordpress codex thumbnail&#039; should give you some directions.
if you have general questions concerning wordpress function, templates and themes, consider joining the free &lt;a href=&quot;http://wordpress.org/support/&quot; rel=&quot;nofollow&quot;&gt;wordpress.org support forum&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>a web search &#8216;wordpress codex thumbnail&#8217; should give you some directions.<br />
if you have general questions concerning wordpress function, templates and themes, consider joining the free <a href="http://wordpress.org/support/" rel="nofollow">wordpress.org support forum</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ayhan</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-5971</link>
		<dc:creator>ayhan</dc:creator>
		<pubDate>Sun, 23 Oct 2011 08:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-5971</guid>
		<description>I use this code in my blog and work fine,but u k&#039;now how to get thumbnail for post?</description>
		<content:encoded><![CDATA[<p>I use this code in my blog and work fine,but u k&#8217;now how to get thumbnail for post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-5968</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Sat, 22 Oct 2011 22:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-5968</guid>
		<description>if you need help creating a special template for your them or even a new theme, you can hire me - please send an email with all the details  to alchymyth@gmail.com -

if you have general questions concerning wordpress templates and themes, consider joining the free &lt;a href=&quot;http://wordpress.org/support/&quot; rel=&quot;nofollow&quot;&gt;wordpress.org support forum&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>if you need help creating a special template for your them or even a new theme, you can hire me &#8211; please send an email with all the details  to <a href="mailto:alchymyth@gmail.com">alchymyth@gmail.com</a> -</p>
<p>if you have general questions concerning wordpress templates and themes, consider joining the free <a href="http://wordpress.org/support/" rel="nofollow">wordpress.org support forum</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yash</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-5961</link>
		<dc:creator>yash</dc:creator>
		<pubDate>Sat, 22 Oct 2011 14:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-5961</guid>
		<description>first i would like to thank you, for this nice post 

dear i want to create multiple layout like this http://demos.gabfirethemes.com/wp-newspaper/category/entertainment/

here are three loops

please guide me</description>
		<content:encoded><![CDATA[<p>first i would like to thank you, for this nice post </p>
<p>dear i want to create multiple layout like this <a href="http://demos.gabfirethemes.com/wp-newspaper/category/entertainment/" rel="nofollow">http://demos.gabfirethemes.com/wp-newspaper/category/entertainment/</a></p>
<p>here are three loops</p>
<p>please guide me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alchymyth</title>
		<link>http://www.transformationpowertools.com/wordpress/multi-column-wordpress-template#comment-5431</link>
		<dc:creator>alchymyth</dc:creator>
		<pubDate>Fri, 29 Jul 2011 09:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.transformationpowertools.com/wordpress/?p=517#comment-5431</guid>
		<description>&#039;many ways lead to rome&#039;  - 
see either: http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style
or: http://www.transformationpowertools.com/wordpress/posts-in-columns-a-new-twist-on-an-old-problem</description>
		<content:encoded><![CDATA[<p>&#8216;many ways lead to rome&#8217;  &#8211;<br />
see either: <a href="http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style" rel="nofollow">http://www.transformationpowertools.com/wordpress/playing-with-columns-stacking-posts-grid-style</a><br />
or: <a href="http://www.transformationpowertools.com/wordpress/posts-in-columns-a-new-twist-on-an-old-problem" rel="nofollow">http://www.transformationpowertools.com/wordpress/posts-in-columns-a-new-twist-on-an-old-problem</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

