<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Widgetized web site. Beyond sidebars.</title>
	<atom:link href="http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/</link>
	<description>Hacking WordPress. Keeping the bits together.</description>
	<lastBuildDate>Fri, 13 Nov 2009 19:04:35 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Damis</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-2907</link>
		<dc:creator>Damis</dc:creator>
		<pubDate>Thu, 05 Jun 2008 00:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-2907</guid>
		<description>This seems not to apply to 2.5... Any updates?</description>
		<content:encoded><![CDATA[<p>This seems not to apply to 2.5&#8230; Any updates?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Coding - WebSiteMechanics</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-2856</link>
		<dc:creator>Wordpress Coding - WebSiteMechanics</dc:creator>
		<pubDate>Wed, 26 Mar 2008 03:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-2856</guid>
		<description>[...] Here are some helpful links for coding in Wordpress: Codex.Wordpress - Theme Development Mastering Your Wordpress Theme - Hacks and Techniques Change Default Thumbnail Size - This should be an admin option! Gravatars - Like politics, gravatars is everywhere! Wordpress Widgets [...]</description>
		<content:encoded><![CDATA[<p>[...] Here are some helpful links for coding in WordPress: Codex.WordPress &#8211; Theme Development Mastering Your WordPress Theme &#8211; Hacks and Techniques Change Default Thumbnail Size &#8211; This should be an admin option! Gravatars &#8211; Like politics, gravatars is everywhere! WordPress Widgets [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonid Mamchenkov</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-127</link>
		<dc:creator>Leonid Mamchenkov</dc:creator>
		<pubDate>Fri, 03 Aug 2007 16:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-127</guid>
		<description>Adam,

this is probably very specific to a theme used.  But it&#039;s good to know, in case random problems pop up.  Thanks for sharing.</description>
		<content:encoded><![CDATA[<p>Adam,</p>
<p>this is probably very specific to a theme used.  But it&#8217;s good to know, in case random problems pop up.  Thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-118</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 03 Aug 2007 15:03:54 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-118</guid>
		<description>no, i wasn&#039;t clear.  for themes, your code should be something like 

&lt;code&gt;
&#039;before_widget&#039; =&gt; &#039;&#039;,
         &#039;after_widget&#039; =&gt; &#039;&#039;,
         &#039;before_title&#039; =&gt; &#039;&#039;,
         &#039;after_title&#039; =&gt; &#039;&#039;,
         &#039;id&#039; =&gt; &#039;1&#039;,
         &#039;name&#039; =&gt; &#039;Left Sidebar&#039;
&lt;/code&gt;

if you only include name, and not ID, the theme borks in strange ways (sometimes related to static front pages)</description>
		<content:encoded><![CDATA[<p>no, i wasn&#8217;t clear.  for themes, your code should be something like </p>
<p><code><br />
'before_widget' =&gt; '',<br />
         'after_widget' =&gt; '',<br />
         'before_title' =&gt; '',<br />
         'after_title' =&gt; '',<br />
         'id' =&gt; '1',<br />
         'name' =&gt; 'Left Sidebar'<br />
</code></p>
<p>if you only include name, and not ID, the theme borks in strange ways (sometimes related to static front pages)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonid Mamchenkov</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-112</link>
		<dc:creator>Leonid Mamchenkov</dc:creator>
		<pubDate>Fri, 03 Aug 2007 12:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-112</guid>
		<description>Adam,

if I understand it correctly, IDs are used for cases, where the same widget can be used several times. Like the text widget.  There is a way to automatically generate unique IDs with WP.  

One day I&#039;ll dig deeper into that and will share the findings.</description>
		<content:encoded><![CDATA[<p>Adam,</p>
<p>if I understand it correctly, IDs are used for cases, where the same widget can be used several times. Like the text widget.  There is a way to automatically generate unique IDs with WP.  </p>
<p>One day I&#8217;ll dig deeper into that and will share the findings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-110</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 03 Aug 2007 12:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-110</guid>
		<description>naming your sidebars is a good idea, but with 2.2.x, i&#039;ve found that i&#039;ve had to also add &lt;code&gt;&#039;id&#039; =&gt; &#039;right&#039;,&lt;/code&gt; to the array.</description>
		<content:encoded><![CDATA[<p>naming your sidebars is a good idea, but with 2.2.x, i&#8217;ve found that i&#8217;ve had to also add <code>'id' =&gt; 'right',</code> to the array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-28</link>
		<dc:creator>Michel</dc:creator>
		<pubDate>Thu, 21 Jun 2007 09:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-28</guid>
		<description>apache/.htaccess might work, but still the URLs will be wrong in WordPress, and this is what puzzles me (and I&#039;d like to see it fixed...)

So better to search what part of the WP code makes the error... :-) I&#039;ll try, I&#039;m just not very strong in PHP:)</description>
		<content:encoded><![CDATA[<p>apache/.htaccess might work, but still the URLs will be wrong in WordPress, and this is what puzzles me (and I&#8217;d like to see it fixed&#8230;)</p>
<p>So better to search what part of the WP code makes the error&#8230; :-) I&#8217;ll try, I&#8217;m just not very strong in PHP:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonid Mamchenkov</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-27</link>
		<dc:creator>Leonid Mamchenkov</dc:creator>
		<pubDate>Thu, 21 Jun 2007 08:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-27</guid>
		<description>Michel,

Yes, the forum isn&#039;t the best place of the WordPress community right now. I haven&#039;t even posted anything in there... Only searching for answers and rarely so.


I see that there was some activity in Trac regarding your issue.  It&#039;s marked for branch 2.4, which is not too far away. :)

In the meantime, it might be possible to get a workaround with Apache&#039;s mod_rewrite.  In your .htaccess you could have a rule that would redirect requests from /something/wp-uploads/some_file to /wp-uploads/some_file .  I don&#039;t know if that would break the actual uploading though. :)</description>
		<content:encoded><![CDATA[<p>Michel,</p>
<p>Yes, the forum isn&#8217;t the best place of the WordPress community right now. I haven&#8217;t even posted anything in there&#8230; Only searching for answers and rarely so.</p>
<p>I see that there was some activity in Trac regarding your issue.  It&#8217;s marked for branch 2.4, which is not too far away. :)</p>
<p>In the meantime, it might be possible to get a workaround with Apache&#8217;s mod_rewrite.  In your .htaccess you could have a rule that would redirect requests from /something/wp-uploads/some_file to /wp-uploads/some_file .  I don&#8217;t know if that would break the actual uploading though. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michel</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-26</link>
		<dc:creator>Michel</dc:creator>
		<pubDate>Thu, 21 Jun 2007 08:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-26</guid>
		<description>Great, thx:)

The forum -- nooo, no luck there... I posted a question, no response at all:( So tried TRAC... Pity I can&#039;t hack it (propose a fix, I mean) myself... :-/

http://trac.wordpress.org/ticket/4427</description>
		<content:encoded><![CDATA[<p>Great, thx:)</p>
<p>The forum &#8212; nooo, no luck there&#8230; I posted a question, no response at all:( So tried TRAC&#8230; Pity I can&#8217;t hack it (propose a fix, I mean) myself&#8230; :-/</p>
<p><a href="http://trac.wordpress.org/ticket/4427" rel="nofollow">http://trac.wordpress.org/ticket/4427</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonid Mamchenkov</title>
		<link>http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-25</link>
		<dc:creator>Leonid Mamchenkov</dc:creator>
		<pubDate>Wed, 20 Jun 2007 20:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://wpbits.wordpress.com/2007/06/16/widgetized-web-site-beyond-sidebars/#comment-25</guid>
		<description>Michel,

yes, I am reading wp-hackers.  But I haven&#039;t used TRAC yet.  I&#039;m just keeping myself updated on the latest developments and arguing here and there.  No actual tractivity ;)

Maybe you can subscribe and buzz the developers about your issue.  They seem to be pretty responsive.  You can try the forum...</description>
		<content:encoded><![CDATA[<p>Michel,</p>
<p>yes, I am reading wp-hackers.  But I haven&#8217;t used TRAC yet.  I&#8217;m just keeping myself updated on the latest developments and arguing here and there.  No actual tractivity ;)</p>
<p>Maybe you can subscribe and buzz the developers about your issue.  They seem to be pretty responsive.  You can try the forum&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
