<?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"
	>
<channel>
	<title>Comments on: Useful WordPress Tricks (for the Theme Designer)</title>
	<atom:link href="http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/feed/" rel="self" type="application/rss+xml" />
	<link>http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/</link>
	<description>Weblog Tools Blogging Tools Blog</description>
	<pubDate>Tue, 02 Dec 2008 16:11:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Roni</title>
		<link>http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/#comment-1230765</link>
		<dc:creator>Roni</dc:creator>
		<pubDate>Thu, 19 Jun 2008 06:17:35 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3650#comment-1230765</guid>
		<description>Pretty simple but got the point. Thx</description>
		<content:encoded><![CDATA[<p>Pretty simple but got the point. Thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan Cancarevic</title>
		<link>http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/#comment-1229924</link>
		<dc:creator>Dejan Cancarevic</dc:creator>
		<pubDate>Sat, 14 Jun 2008 11:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3650#comment-1229924</guid>
		<description>thanks for the tip ChaosKaizer</description>
		<content:encoded><![CDATA[<p>thanks for the tip ChaosKaizer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ChaosKaizer</title>
		<link>http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/#comment-1229875</link>
		<dc:creator>ChaosKaizer</dc:creator>
		<pubDate>Sat, 14 Jun 2008 04:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3650#comment-1229875</guid>
		<description>just wanna touch the include specific files tips for sidebar
if you have additional sidebar like for single or archive you can do it like the following (WP2.5.x)

&lt;code&gt;
get_sidebar($name); // arg $name is sidebar-"name".php
&lt;/code&gt;
the function will look for sidebar-single.php (inside theme dir) and load it if exists otherwise it will load the default sidebar.php.

you can include section base sidebar base on wordpress hierarchical order. below is just a simple example (need to tweak it base on which section came first thought)
&lt;code&gt;
if (is_single()){
 get_sidebar('single'); // include /theme/sidebar-single.php
} elseif (is_archive()){
 get_sidebar('archive'); // include /theme/sidebar-archive.php
} else {
 get_sidebar();
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>just wanna touch the include specific files tips for sidebar<br />
if you have additional sidebar like for single or archive you can do it like the following (WP2.5.x)</p>
<p><code><br />
get_sidebar($name); // arg $name is sidebar-"name".php<br />
</code><br />
the function will look for sidebar-single.php (inside theme dir) and load it if exists otherwise it will load the default sidebar.php.</p>
<p>you can include section base sidebar base on wordpress hierarchical order. below is just a simple example (need to tweak it base on which section came first thought)<br />
<code><br />
if (is_single()){<br />
 get_sidebar('single'); // include /theme/sidebar-single.php<br />
} elseif (is_archive()){<br />
 get_sidebar('archive'); // include /theme/sidebar-archive.php<br />
} else {<br />
 get_sidebar();<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dejan</title>
		<link>http://weblogtoolscollection.com/archives/2008/06/13/useful-wordpress-tricks-for-the-theme-designer/#comment-1229843</link>
		<dc:creator>Dejan</dc:creator>
		<pubDate>Fri, 13 Jun 2008 21:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://weblogtoolscollection.com/?p=3650#comment-1229843</guid>
		<description>thanks for mentioning me!</description>
		<content:encoded><![CDATA[<p>thanks for mentioning me!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
