<?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: How to Create Smart Dynamic Sidebars</title>
	<atom:link href="http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/</link>
	<description>Learn How To Be A Successful Blogger</description>
	<lastBuildDate>Mon, 10 Oct 2011 02:02:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: New Design for my Posts on WordPress &#8211; Atahualpa Theme &#171; BPWebNews</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-60354</link>
		<dc:creator>New Design for my Posts on WordPress &#8211; Atahualpa Theme &#171; BPWebNews</dc:creator>
		<pubDate>Mon, 17 Jan 2011 20:57:34 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-60354</guid>
		<description>[...] In Blogger most of us go wild with widgets &#8211; tame them with Widget Logic plugin for WP - Read this how to post  How to Create Smart Dynamic Sidebars  [...]</description>
		<content:encoded><![CDATA[<p>[...] In Blogger most of us go wild with widgets &#8211; tame them with Widget Logic plugin for WP &#8211; Read this how to post  How to Create Smart Dynamic Sidebars  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-54063</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Fri, 21 May 2010 17:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-54063</guid>
		<description>Cole, I think your sidebars are super smart! Great idea to hide all the sidebars, then dynamically show the one you want.. Thanks for sharing this approach. </description>
		<content:encoded><![CDATA[<p>Cole, I think your sidebars are super smart! Great idea to hide all the sidebars, then dynamically show the one you want.. Thanks for sharing this approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cole</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-54052</link>
		<dc:creator>Cole</dc:creator>
		<pubDate>Fri, 21 May 2010 09:23:56 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-54052</guid>
		<description>So I have no idea when you posted this because there&#039;s no date on this page but I wanted to add my thoughts. I have edited my sidebar.php so the code that calls the sidebar looks like this (minus the lesser/greater thans cause I don&#039;t know how it&#039;ll show on your blog): 
 
&lt;code&gt;?php 
$sidebar_index=1; 
if ( is_page(&#039;Me&#039;) &#124;&#124; $post-&gt;post_parent == &#039;2168&#039;) { 
$sidebar_index=2; 
} elseif (is_page(&#039;Content&#039;) &#124;&#124; $post-&gt;post_parent == &#039;2175&#039;)  { 
 $sidebar_index=3; 
} elseif (is_page(&#039;Site&#039;) &#124;&#124; $post-&gt;post_parent == &#039;2172&#039;) {$sidebar_index=4; 
} elseif (is_page(&#039;Links&#039;) &#124;&#124; $post-&gt;post_parent == &#039;2965&#039;) { 
$sidebar_index=5; 
} 
? 
 
?php  
if ( !function_exists(&#039;dynamic_sidebar&#039;) &#124;&#124; !dynamic_sidebar($sidebar_index) ) : ?&lt;/code&gt; 
 
It seems like this plugin does a similar thing in a different way. I have 5 sidebars with 4 or so widgets in each so having the separate sidebars in my dashboard is more useful than editing 20 widgets on one page. But I do like that you edit the widgets to specify where they show, rather than editing posts/pages (which would pretty much be impossible for me). 
.-= Cole&#180;s recent blog ..&lt;a href=&quot;http://7and1.net/2010/05/17/cell-phone-culture/&quot; rel=&quot;nofollow&quot;&gt;Cell Phone Culture&lt;/a&gt; =-. </description>
		<content:encoded><![CDATA[<p>So I have no idea when you posted this because there&#039;s no date on this page but I wanted to add my thoughts. I have edited my sidebar.php so the code that calls the sidebar looks like this (minus the lesser/greater thans cause I don&#039;t know how it&#039;ll show on your blog):</p>
<p>&lt;code&gt;?php</p>
<p>$sidebar_index=1;</p>
<p>if ( is_page(&#039;Me&#039;) || $post-&gt;post_parent == &#039;2168&#039;) {</p>
<p>$sidebar_index=2;</p>
<p>} elseif (is_page(&#039;Content&#039;) || $post-&gt;post_parent == &#039;2175&#039;)  {</p>
<p> $sidebar_index=3;</p>
<p>} elseif (is_page(&#039;Site&#039;) || $post-&gt;post_parent == &#039;2172&#039;) {$sidebar_index=4;</p>
<p>} elseif (is_page(&#039;Links&#039;) || $post-&gt;post_parent == &#039;2965&#039;) {</p>
<p>$sidebar_index=5;</p>
<p>}</p>
<p>?</p>
<p>?php </p>
<p>if ( !function_exists(&#039;dynamic_sidebar&#039;) || !dynamic_sidebar($sidebar_index) ) : ?&lt;/code&gt;</p>
<p>It seems like this plugin does a similar thing in a different way. I have 5 sidebars with 4 or so widgets in each so having the separate sidebars in my dashboard is more useful than editing 20 widgets on one page. But I do like that you edit the widgets to specify where they show, rather than editing posts/pages (which would pretty much be impossible for me).<br />
.-= Cole&acute;s recent blog ..<a href="http://7and1.net/2010/05/17/cell-phone-culture/" rel="nofollow">Cell Phone Culture</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-53365</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Mon, 03 May 2010 17:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-53365</guid>
		<description>I tried to visit your site but there was a &quot;500 - internal server error.&#039; Will try again later, but you might want to ask your webhost to investigate. Thanks for stopping by; hope you use the tip. </description>
		<content:encoded><![CDATA[<p>I tried to visit your site but there was a &quot;500 &#8211; internal server error.&#039; Will try again later, but you might want to ask your webhost to investigate. Thanks for stopping by; hope you use the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: strGraphics</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-53363</link>
		<dc:creator>strGraphics</dc:creator>
		<pubDate>Mon, 03 May 2010 07:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-53363</guid>
		<description>Excellent share.., nice concept. 
 
Thanks friend. </description>
		<content:encoded><![CDATA[<p>Excellent share.., nice concept.</p>
<p>Thanks friend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The OMV Weekly Retweet Roundup April 25th</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-52688</link>
		<dc:creator>The OMV Weekly Retweet Roundup April 25th</dc:creator>
		<pubDate>Mon, 26 Apr 2010 02:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-52688</guid>
		<description>[...] How to Cre­ate Smart Dynamic Side­bars http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Cre­ate Smart Dynamic Side­bars <a href="http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars" rel="nofollow">http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-52505</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Fri, 23 Apr 2010 16:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-52505</guid>
		<description>Now that&#039;s a good to hear. I know you&#039;re not just killing time, but putting tips into action (you did read that post about reading not making you successful, lol). Thanks for coming back! </description>
		<content:encoded><![CDATA[<p>Now that&#039;s a good to hear. I know you&#039;re not just killing time, but putting tips into action (you did read that post about reading not making you successful, lol). Thanks for coming back!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-52504</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Fri, 23 Apr 2010 16:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-52504</guid>
		<description>So glad to see you again! Google is a good walking stick so you&#039;ve used it well. Just seeing your post titles in CommentLuv makes me start to giggle... I know what&#039;s coming... fun. </description>
		<content:encoded><![CDATA[<p>So glad to see you again! Google is a good walking stick so you&#039;ve used it well. Just seeing your post titles in CommentLuv makes me start to giggle&#8230; I know what&#039;s coming&#8230; fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBA</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-52503</link>
		<dc:creator>SBA</dc:creator>
		<pubDate>Fri, 23 Apr 2010 16:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-52503</guid>
		<description>Memey, do you have other blogs where you plan to us this? </description>
		<content:encoded><![CDATA[<p>Memey, do you have other blogs where you plan to us this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher Anderson</title>
		<link>http://bloggingwithsuccess.net/how-to-create-smart-dynamic-sidebars/comment-page-1/#comment-54681</link>
		<dc:creator>Christopher Anderson</dc:creator>
		<pubDate>Wed, 21 Apr 2010 09:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://bloggingwithsuccess.net/?p=7572#comment-54681</guid>
		<description>&lt;span class=&quot;topsy_trackback_comment&quot;&gt;&lt;span class=&quot;topsy_twitter_username&quot;&gt;&lt;span class=&quot;topsy_trackback_content&quot;&gt;RT @bwsteam: How to Create Smart Dynamic Sidebars # http://bit.ly/aBa9as&lt;/span&gt;&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p><span class="topsy_trackback_comment"><span class="topsy_twitter_username"><span class="topsy_trackback_content">RT @bwsteam: How to Create Smart Dynamic Sidebars # <a href="http://bit.ly/aBa9as" rel="nofollow">http://bit.ly/aBa9as</a></span></span></span></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 14/45 queries in 0.033 seconds using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: cdn.bloggingwithsuccess.net

Served from: bloggingwithsuccess.net @ 2012-02-08 17:27:31 -->
