<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; widgets</title>
	<atom:link href="http://wpgarage.com/tag/widgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Wed, 16 Nov 2011 14:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to rename widgetized sidebars in WordPress</title>
		<link>http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/</link>
		<comments>http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 11:01:08 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[names]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[widgetized sidebar]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/</guid>
		<description><![CDATA[<p>You can manage multiple sidebar widgets in WordPress. To do so, you go to the Widgets page in the Admin, and select the Sidebar you want to manage. If you have 1 widgetized sidebar, the name &#8220;Sidebar 1&#8243; is not a big deal for managing it. But what if you have 5 or more, and [...]</p><p>This post was originally published at <a href="http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/">How to rename widgetized sidebars in WordPress</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/" data-url="http://illum.in/oYtUpp" data-text="How to rename widgetized sidebars in WordPress" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/"></g:plusone></div></div><p>You can manage multiple sidebar widgets in WordPress. To do so, you go to the Widgets page in the Admin, and select the Sidebar you want to manage. If you have 1 widgetized sidebar, the name &#8220;Sidebar 1&#8243;  is not a big deal for managing it. But what if you have 5 or more, and they&#8217;re named Sidebar 1, Sidebar 2, etc. Ah yes, now what was  that wily sidebar 3 for?</p>
<p>Why would someone have so many sidebars to begin with? Well, remember that you can also add <a href="http://www.sueblimely.com/add-widget-ready-sidebars-to-wordpress-footers/">widget-ready sidebars to WordPress footers</a> or anywhere in your design, to give extra content management options to clients.</p>
<p>Recently, we had a client with way too many widgetized sidebars to  keep track of, so we had to find a new solution to change the standard widget sidebar names like &#8220;sidebar 1&#8243; or &#8220;sidebar 2&#8243; to something  more meaningful like &#8220;Left sidebar&#8221; and &#8220;Right sidebar&#8221; in the admin  area. I dug around the web and found 2 very helpful posts:</p>
<ul>
<li><a href="http://www.blogherald.com/2007/05/24/how-to-use-widgets-with-more-than-one-sidebar-on-your-wordpress-blog/">How to use widgets with more than one sidebar on your WordPress blog</a></li>
<li><a href="http://internetducttape.com/2007/04/09/howto-design-a-variable-sidebar-wordpress-theme-with-widgets/">How to design a variable sidebar WordPress theme with widgets (by guest blogger Daria Black)</a></li>
</ul>
<p>Here&#8217;s what I learned:</p>
<p>1. Go into your themes&#8217;s <strong>function.php </strong>file, or if it doesn&#8217;t exist, create it.</p>
<p>Add the following code:</p>
<blockquote><p><strong>&lt;?php</strong></p>
<p><strong> if (function_exists(&#8216;register_sidebar&#8217;))</strong></p>
<p><strong>{</strong></p>
<p><strong>register_sidebar(array(</strong></p>
<p><strong>&#8216;before_widget&#8217; =&gt; &#8216;&lt;li&gt;&#8217;,</strong></p>
<p><strong>&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</strong></p>
<p><strong>&#8216;before_title&#8217; =&gt; &#8216;&lt;h4&gt;&#8217;,</strong></p>
<p><strong>&#8216;after_title&#8217; =&gt; &#8216;&lt;/h4&gt;&#8217;,</strong></p>
<p><strong></strong><strong>&#8216;name&#8217; =&gt; &#8216;Left sidebar&#8217;</strong></p>
<p><strong>));</strong></p>
<p><strong>register_sidebar(array(</strong></p>
<p><strong>&#8216;before_widget&#8217; =&gt; &#8216;&lt;li&gt;&#8217;,</strong></p>
<p><strong>&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</strong></p>
<p><strong>&#8216;before_title&#8217; =&gt; &#8216;&lt;h4&gt;&#8217;,</strong></p>
<p><strong>&#8216;after_title&#8217; =&gt; &#8216;&lt;/h4&gt;&#8217;,</strong></p>
<p><strong>&#8216;name&#8217; =&gt; &#8216;Right sidebar&#8217;</strong></p>
<p><strong>));</strong></p>
<p><strong>}</strong></p>
<p><strong>?&gt;</strong></p></blockquote>
<p>2a. Add a widgetized sidebar to your theme. Open up your theme&#8217;s sidebar file (for exampe, l_sidebar.php) and look for the first &lt;ul&gt; or &lt;ul id=&#8221;sidebar&#8221;&gt; or something similar, and add the following code:</p>
<blockquote><p><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;Left sidebar&#8217;) ) : ?&gt;</strong></p></blockquote>
<p>2b. If your sidebar is already widgetized, find the following code</p>
<blockquote>
<blockquote><p><strong>&lt;?php if ( function_exists(&#8216;dynamic_sidebar&#8217;) &amp;&amp; dynamic_sidebar(1) ) : else : ?&gt;</strong></p></blockquote>
<p>and replace it with</p>
<blockquote><p><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;Left sidebar&#8217;) ) : ?&gt;</strong></p></blockquote>
</blockquote>
<p>Then, find the closing &lt;/ul&gt; at the very bottom of the file, and immediately before that, place</p>
<p><strong>&lt;?php endif; ?&gt;</strong></p>
<p>3. Now, if you go into your admin panel, under Design&gt;Widgets, you&#8217;ll see the new names like in the image below.</p>
<p><img class="alignnone size-full wp-image-381" title="widgets" src="http://wpgarage.com/wp-content/uploads/2008/11/widgets.png" alt="" width="312" height="165" /></p>
<p>Now you can easily manage your Widgets without trying to guess which one is which.</p>
<p>This post was originally published at <a href="http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/">How to rename widgetized sidebars in WordPress</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easily add unwidgetized WordPress plugins to widgetized sidebar with Custom Function Widgets plugin</title>
		<link>http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/</link>
		<comments>http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 09:04:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/</guid>
		<description><![CDATA[<p>One of the reasons I hesitated to use widgets is because there are many useful plugins that aren&#8217;t widgets and demand that you add a snippet of code to your sidebar, something you can&#8217;t really do with widgets. Well, now you can widgetize your sidebar and add both widgets and non-widget plugins to it with [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/">Easily add unwidgetized WordPress plugins to widgetized sidebar with Custom Function Widgets plugin</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/" data-url="http://illum.in/pBf0F7" data-text="Easily add unwidgetized WordPress plugins to widgetized sidebar with Custom Function Widgets plugin" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/"></g:plusone></div></div><p>One of the reasons I hesitated to use widgets is because there are many useful plugins that aren&#8217;t widgets and demand that you add a snippet of code to your sidebar, something you can&#8217;t really do with widgets.</p>
<p>Well, now you can widgetize your sidebar and add both widgets and non-widget plugins to it with the <a href="http://konstruktors.com/blog/wordpress/101-wordpress-plugin-custom-function-widgets/" title="WordPress Plugin: Custom Function Widgets">Custom Functions Widgets plugin</a>.</p>
<p>When activated, this plugin creates 20 empty widgets. To use one of them for a non-widget plugin, you drag one onto the sidebar, and then edit the widget&#8217;s options as follows:</p>
<ol>
<li>Give it a title.</li>
<li>Name the function you want to call.</li>
<li>Enter the arguments to pass.</li>
<li>HTML to display <em>before the output</em> of the function</li>
<li>HTML to display <em>after the output</em> of the function</li>
<li>Option to hide the title of the widget (which you specified as <em>Widget title</em>) during the output</li>
<li>Option to remove the default wrapper of the widget (as defined in <code>template.php</code> of your theme’s folder, for each sidebar)</li>
<li>Close the widget options pop-up and click <em>‘Save Changes’</em></li>
</ol>
<p>Now your sidebar can handle all types of plugins and widgets!</p>
<p><a href="http://konstruktors.com/blog/wordpress/101-wordpress-plugin-custom-function-widgets/" title="WordPress Plugin: Custom Function Widgets">WordPress Plugin: Custom Function Widgets</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/">Easily add unwidgetized WordPress plugins to widgetized sidebar with Custom Function Widgets plugin</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/easily-add-unwidgetized-wordpress-plugins-to-widgetized-sidebar-with-custom-function-widgets-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Display your web identity with the ShowYourself Widget</title>
		<link>http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/</link>
		<comments>http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 15:42:15 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/</guid>
		<description><![CDATA[<p>The challenge is coordinating all of the places that we appear on the web. Previously we discussed possible ways to combine your blog with facebook. You could also use add the ShowYourself Widget to your blog sidebar, which allows you to collect and display your online identities on various community sites in one place. Here&#8217;s [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/">Display your web identity with the ShowYourself Widget</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/" data-url="http://illum.in/ouPiQG" data-text="Display your web identity with the ShowYourself Widget" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/"></g:plusone></div></div><p>The challenge is coordinating all of the places that we appear on the web. Previously we discussed <a href="tips/finding-the-perfect-facebook-wordpress-system/" title="Finding the perfect facebook-WordPress system">possible ways to combine your blog with facebook</a>. You could also use add the <a href="http://www.dbachrach.com/showyourself/" title="ShowYourself Widget">ShowYourself Widget</a> to your blog sidebar, which allows you to collect and display your online identities on various community sites in one place. Here&#8217;s a sample:</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/01/showyourselfwidget.png" alt="ShowYourself Widget" /></p>
<p><a href="http://www.dbachrach.com/showyourself/">ShowYourself Widget</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/">Display your web identity with the ShowYourself Widget</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/display-your-web-identity-with-the-showyourself-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview with Yedda&#8217;s head of Community Marketing about new Feedflare modules for bloggers</title>
		<link>http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/</link>
		<comments>http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 15:18:08 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/</guid>
		<description><![CDATA[<p>Yedda is an Israeli start up with a web-based questions and answer service that is generally agreed to rival that of Yahoo Answers. Yedda&#8217;s technology powers many independent Q&#38;A services as well, including ePals and TheJobNetwork (via TechCrunch). In early November, Yedda was acquired by AOL for an undisclosed amount, making it the second Israeli [...]</p><p>This post was originally published at <a href="http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/">Interview with Yedda&#8217;s head of Community Marketing about new Feedflare modules for bloggers</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/" data-url="http://illum.in/p8k883" data-text="Interview with Yedda&#8217;s head of Community Marketing about new Feedflare modules for bloggers" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/"></g:plusone></div></div><p><a href="http://yedda.com" title="Yedda"><img src="http://wpgarage.com/wp-content/uploads/2008/01/yeddalogo.jpg" alt="Yedda logo" align="left" />Yedda</a> is an Israeli start up with a web-based questions and answer service that is generally agreed to rival that of <a href="http://answers.yahoo.com/" title="Yahoo Answers">Yahoo Answers</a>. Yedda&#8217;s technology powers many independent Q&amp;A services as well, including <a href="http://www.epalscorp.com/about/news/press_jun22_07.html" title="ePals">ePals</a> and <a href="http://www.genesispartners.com/content.asp?page=portfolio_news&amp;id=958" title="TheJobNetwork">TheJobNetwork</a> (via <a href="http://www.techcrunch.com/2007/11/11/aol-gets-into-qa-business-acquires-israels-yedda/" title="AOL Gets Into Q&amp;A Business, Acquires Israel’s Yedda">TechCrunch</a>). In early November, <a href="http://www.news.com/8301-13577_3-9814968-36.html" title="AOL acquires question-and-answer service Yedda">Yedda was acquired by AOL</a> for an undisclosed amount, making it the second Israeli company to be acquired by AOL in a matter of weeks (the first one was <a href="http://mashable.com/2007/12/30/aols-quigo-acquisition-complete/" title="AOL’s Quigo Acquisition Complete">Quigo</a>.)</p>
<p>I first met <a href="http://yedda.com/people/6270917371538/" title="Lior Haner's Profile on Yedda">Lior Haner</a>, the head of Yedda&#8217;s Community Marketing, at <a href="http://2007.wordcamp.co.il/" title="WordCamp Israel">WordCamp Israel</a> in October. He contacted me recently to tell me about <a href="http://blog.yedda.com/?p=130" title="New - Yedda FeedFlares">Yedda&#8217;s new Feedflare modules</a> that allow bloggers to add a specific Yedda FeedFlare to their feeds that allow readers to ask questions about specific blog posts.</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2008/01/feedflare-blog1.jpg" alt="Yedda FeedFlare module" /><br />
<em>(Image from the Yedda blog)</em></p>
<p>The idea sounded interesting, but I had some reservations about something that would move discussion about a blog post to another site, since bloggers are notoriously protective of any activity or traffic taking place around their blog&#8217;s content.</p>
<p>So I asked Lior if I could interview him about the FeedFlare modules to try to get a better picture, and to give you, my readers, a chance to respond and tell us what you think. He kindly agreed, so here it is:</p>
<p><em><strong>WPG</strong>: Hi Lior! Thanks for agreeing to do an email interview about Yedda&#8217;s new Feedflare modules. </em></p>
<p><strong>Lior:</strong> It’s a pleasure, I really believe that blogging is the best way to get information out and create a useful discussion.</p>
<p><em><strong>WPG:</strong> First, can you tell our readers a little bit about Yedda?</em></p>
<p><strong>Lior:</strong> <a href="http://yedda.com" title="Yedda">Yedda</a> is a place for people to find answers to their questions. Before the internet age, people with questions first tried to seek out the most qualified person in the question’s topic in order to get an answer. On Yedda, anyone can post a question and tell the story behind it and include any relevant links, images or videos. Then, we match that question with people who have the relevant knowledge out of the Yedda community and invite them to answer that question. This basically creates people-powered search that helps you get better results that aren’t available or difficult to achieve on search engines.</p>
<p>In contrast to most other Q&amp;A sites, Yedda is a platform that can be accessed from Yedda.com, from blogs using Yedda blog widgets, FeedFlare or from Yedda partner sites.</p>
<p><em><strong>WPG:</strong> Can you tell us about the FeedFlare modules, what they do and how they can benefit bloggers?</em></p>
<p><strong>Lior:</strong> <a href="http://www.feedburner.com/fb/a/publishers/feedflare" title="FeedFlare Overview and FAQ">FeedFlare</a> is a product by <a href="http://feedburner.com" title="Feedburner">Feedburner</a>, who many bloggers use to keep track of their blog’s stats. FeedFlares are little links at the end of your posts that are visible in your RSS feed and can also be added to your blog’s template. In your feed you have FeedFlare elements that let your readers E-mail, save to Delicious, etc. Yedda has created a custom FeedFlare element that lets readers ask a question on Yedda about your post. The question includes a prominent link to your blog and can attract new readers from the Yedda community. Here is some more information on Yedda’s blog: <a href="http://blog.yedda.com/?p=130">http://blog.yedda.com/?p=130</a></p>
<p><em><strong>WPG:</strong> How does it solve the problem of bloggers wanting conversations to take place on their blog?</em></p>
<p><strong>Lior:</strong> Although the questions are asked on Yedda, they include a prominent link back to your blog that both attracts new readers and is good for SEO. If you interact with your readers on Yedda and add your blog’s URL to your Yedda profile, you can create your own knowledge community and promote yourself on Yedda’s network. Using <a href="http://yedda.com/blogger">Yedda’s widgets</a> you can create more interaction between Yedda and your blog and span the conversation over both venues.</p>
<p><em><strong>WPG: </strong>Is Yedda widely used, i.e. is there a benefit to bloggers to gain exposure on the Yedda site? Can you give us some statistics?</em></p>
<p><strong>Lior: </strong>Yedda has a growing community of askers and answerers and is currently one of the world’s leading Q&amp;A sites. At the end of 2007 AOL announced it had acquired Yedda and that Yedda’s offering will be gradually added to many AOL sites. Yedda’s approach is that you can ask or answer from anywhere and you will be visible from anywhere. This means that links to your blog on Yedda have a potential of reaching millions of AOL users in your topics of interest.</p>
<p><em><strong>WPG: </strong>Have people started to use the FeedFlares, and if so, how is the response? Do people actually click on them?</em></p>
<p><strong>Lior: </strong><a href="http://blog.yedda.com/?p=130" title="Yedda FeedFlares">Yedda FeedFlares</a> are a new offering but we have received some great feedback. People use both the FeedFlares and the widgets, and blog owners have reported an increase in the exposure they get from Yedda.</p>
<p><em><strong>WPG: </strong>Can you tell me about some of the other widgets you offer to bloggers?</em></p>
<p><strong>Lior: </strong>Here is an introduction to Yedda widgets: <a href="http://yedda.com/blogger">http://yedda.com/blogger</a>. Yedda widgets let your readers ask questions, view relevant Q&amp;A about the topics of your blogs and see what answers you gave in your topics of knowledge.</p>
<p><em><strong>WPG:</strong> As you mentioned, Yedda was recently acquired by AOL. Is this going to affect the blogger services you provide, and if so, how?</em></p>
<p><strong>Lior: </strong>The most dramatic effect will be that Yedda will continue growing quickly. The fact that many new people will join Yedda or be exposed to Yedda’s Q&amp;A in AOL and other sites means more exposure for blogs or people promoting knowledge topics on Yedda. We also plan to continue developing our blogger offering and launching great new products.</p>
<p><em><strong>WPG: </strong>Anything else you would like to mention?</em></p>
<p><strong>Lior: </strong>I also wanted to mention that Yedda supplies content sites and publishers with a full-fledged customizable Q&amp;A platform. The Yedda platform is currently integrated into AOL sites and is already up and running in many partner sites (Here are some examples: <a href="http://www.epals.com">http://www.epals.com</a>, <a href="http://articlesbase.com">http://articlesbase.com</a>, <a href="http://www.filesrating.com">http://www.filesrating.com</a>). Here is some more information about Yedda’s partner program: <a href="http://yedda.com/partners">http://yedda.com/partners</a>.</p>
<p>If you want to inquire about Yedda’s offering, I’ll be happy to help: <a href="mailto:lior.haner@yedda.com"><script language="JavaScript" type="text/javascript">var username = "lior.haner"; var hostname = "yedda.com";document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + username + "@" + hostname + "<\/a>")</script></a>.</p>
<p><em><strong>WPG: </strong>Thanks Lior!</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>So what do you think? Do you think that Yedda&#8217;s FeedFlares will catch on?</p>
<p>More on Yedda:</p>
<ul>
<li>&#8220;Yedda&#8221; is the Hebrew word for knowledge.</li>
<li><a href="http://www.techcrunch.com/2006/01/25/community-search-with-yedda/" title="Community Search with Yedda">Yedda&#8217;s first exposure on TechCrunch</a> and then <a href="http://www.techcrunch.com/2006/08/14/stealth-israeli-startup-yedda-launches/" title="Stealth Israeli Startup Yedda Launches">the follow up when it came out of beta</a>.</li>
<li><a href="http://blog.yedda.com/?p=108" title="Yedda on Facebook">Yedda on Facebook</a></li>
<li>Kara Swisher from BoomTown on Yedda&#8217;s acquisition by AOL: &#8220;<a href="http://kara.allthingsd.com/20071112/aol-yadda-yadda-yedda/">AOL: Yadda, Yadda, Yedda?</a>&#8220;<em>.</em></li>
<li><a href="http://www.flickr.com/photos/yedda" title="YeddaTeam's photos on flickr">YeddaTeam&#8217;s photos on flickr</a> &#8211; see the people behind the company.</li>
</ul>
<p>This post was originally published at <a href="http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/">Interview with Yedda&#8217;s head of Community Marketing about new Feedflare modules for bloggers</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Share your Shared items from Google Reader in your blog</title>
		<link>http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/</link>
		<comments>http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 20:20:26 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/</guid>
		<description><![CDATA[<p>A little while ago one of the commenters here asked if I knew how to display shared items from Google Reader in a blog, such as in the sidebar. David Paul Robinson explains how to put a &#8220;clip&#8221; on your blog that contains your shared items. You could probably also use one of WordPress&#8217; feed [...]</p><p>This post was originally published at <a href="http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/">Share your Shared items from Google Reader in your blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/" data-url="http://illum.in/oiyJEK" data-text="Share your Shared items from Google Reader in your blog" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/"></g:plusone></div></div><p>A little while ago one of the commenters here asked if I knew how to display shared items from Google Reader in a blog, such as in the sidebar. <a href="http://www.davidpaulrobinson.com/2007/04/08/using-google-reader-for-your-link-blog/">David Paul Robinson explains</a> how to put a &#8220;clip&#8221; on your blog that contains your shared items. You could probably also use one of WordPress&#8217; feed widgets or plugins to display your Shared items RSS feed on  your site.<br />
<a href="http://www.davidpaulrobinson.com/2007/04/08/using-google-reader-for-your-link-blog/">Using Google Reader For Your Link Blog&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/">Share your Shared items from Google Reader in your blog</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/share-your-shared-items-from-google-reader-in-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inserting editable text in the sidebar &#8211; part II: Widgets</title>
		<link>http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/</link>
		<comments>http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 15:23:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/</guid>
		<description><![CDATA[<p>In an earlier post, I wrote about my quest to find a way to easily allow users to modify text in the sidebar of a site I was creating. After trying a few different options, I happily settled on the Improved Include Page plugin. Then I started trying to add all sorts of social stuff [...]</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/">Inserting editable text in the sidebar &#8211; part II: Widgets</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/" data-url="http://illum.in/pjOJfs" data-text="Inserting editable text in the sidebar &#8211; part II: Widgets" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/"></g:plusone></div></div><p><a href="plugins/inserting-editable-text-in-the-sidebar/" title="Inserting editable text in the sidebar">In an earlier post</a>, I wrote about my quest to find a way to easily allow users to modify text in the sidebar of a site I was creating. After trying a few different options, I happily settled on the <a href="http://www.vtardia.com/improved-include-page/" title="Improved Include Page plugin">Improved Include Page</a> plugin.</p>
<p>Then I started trying to add all sorts of social stuff to the blog part of the site, such as the Sociable icons for bookmarking, and the option to email a post to a friend, or print a printer-friendly version. The problem is that if you select to have the sociable bookmarks appear on Pages, and you insert the PHP code for the print and email functions on Pages, it conflicts with the bit in the sidebar which is also, in essence, a Page.</p>
<p>After playing around with it for a bit, I realized I needed a different solution to the editable text in the sidebar, and decided to try to go with <a href="http://automattic.com/code/widgets/" title="Widgets">widgets</a>.</p>
<p><strong>The Need: </strong>I needed to be able to insert a text widget so that users could easily edit the text within it, but I needed to keep the rest of the information that appears in the sidebar, such as the posts from a certain category, since as far as I know there are no widgets that allow you to display posts from one category only. I also needed the text in the widget to appear with the same styles as the rest of the sidebar.</p>
<p><strong>The Solution:</strong></p>
<p>First I made the site widget-ready. This is very easy, and involves only a few steps:</p>
<ol>
<li><a href="http://automattic.com/code/widgets/" title="Widgets plugin">Download the widgets plugin</a>. Upload the entire widgets folder to your plugins directory. Activate.</li>
<li>Create a file called functions.php. Put the following code in the file and upload (make sure there are no spaces before or after the code &#8211; that can be deadly!):<br />
<code>&lt;?php<br />
if ( function_exists('register_sidebar') )<br />
register_sidebar();<br />
?&gt;</code></li>
<li>Since I wanted most of the sidebar text to remain as is, I modified my sidebar as follows:<br />
<code>&lt;form id="searchform" method="get" action="&lt;?php echo $_SERVER['PHP_SELF']; ?&gt;"&gt;<br />
&lt;input type="text" name="s" id="s" value="search and press enter..."/&gt;&lt;/form&gt;<br />
&lt;?php if ( function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar() ) : else : ?&gt;<br />
&lt;?php endif; ?&gt;&lt;h2&gt;News&lt;/h2&gt;<br />
&lt;ul&gt;<br />
...</code><br />
This kept my search bar at the top, inserted a place for the widgets, and then after that the rest of the sidebar appears as is.</li>
<li>The widgets plugin that was installed in step 1 creates a menu under Presentation&gt;Sidebar Widgets. I went there, and dragged a text widget onto the Sidebar. I then clicked on the box on the right, and entered the title in the title field, and the text in the text box with HTML tags.</li>
<li>Everything looked good, but next to the title was an annoying bullet that obviously emanated from an unwanted &lt;li&gt; list tag that had been added. The question was &#8211; where did it come from? I scoured the web looking for an answer, and found a hint on <a href="http://automattic.com/code/widgets/themes/" title="Automattic &gt;&gt; Widgetizing Themes">this page</a> under the section called &#8220;My sidebar isn’t a list. What do I do?&#8221; It explained that it styles the widget with &lt;li&gt; tags. I opened widgets.php in the widgets folder under plugins, and changed lines 52 and 53 as follows:<br />
<code>'before_widget' =&gt; '&lt;div id="%1$s" class="widget %2$s"&gt;',<br />
'after_widget' =&gt; "&lt;/div&gt;\n",</code><br />
I changed the places where it said <code>li</code> to <code>div</code>. It worked like  a charm.</li>
</ol>
<p>Now I had easily editable text in the sidebar, plus I could freely use the Sociable, e-mail and print plugins as I pleased.</p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/">Inserting editable text in the sidebar &#8211; part II: Widgets</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/inserting-editable-text-in-the-sidebar-part-ii-widgets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>LinkedInABox</title>
		<link>http://wpgarage.com/plugins/linkedinabox/</link>
		<comments>http://wpgarage.com/plugins/linkedinabox/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 21:58:27 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/linkedinabox/</guid>
		<description><![CDATA[<p>LinkedInABox™ is a simple widget that can be embedded on any web page and provides a summary of your personal profile, as presented in your LinkedIn account. LinkedInABox&#62;&#62;</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/linkedinabox/">LinkedInABox</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/linkedinabox/" data-url="http://illum.in/o3ScRc" data-text="LinkedInABox" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/linkedinabox/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/linkedinabox/"></g:plusone></div></div><p>LinkedInABox™ is a simple widget that can be embedded on any web page and provides a summary of your personal profile, as presented in your LinkedIn account.</p>
<p><a href="http://www.linkedinabox.com/" title="LinkedInABox">LinkedInABox&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/linkedinabox/">LinkedInABox</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/linkedinabox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Google Search Results Page on Your WordPress with Adsense Deluxe</title>
		<link>http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/</link>
		<comments>http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 19:39:21 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/</guid>
		<description><![CDATA[<p>Create a custom Google search results page within your WordPress blog with widgets and this plugin. Custom Google Search Results Page on Your WordPress with Adsense Deluxe&#62;&#62;</p><p>This post was originally published at <a href="http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/">Custom Google Search Results Page on Your WordPress with Adsense Deluxe</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/" data-url="http://illum.in/nl7ZXJ" data-text="Custom Google Search Results Page on Your WordPress with Adsense Deluxe" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/"></g:plusone></div></div><p>Create a custom Google search results page    within your WordPress blog with widgets and this plugin.</p>
<p><a href="http://www.easywordpress.com/labs/216/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/" title="Custom Google Search Results Page on Your WordPress with Adsense Deluxe">Custom Google Search Results Page on Your WordPress with Adsense Deluxe&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/">Custom Google Search Results Page on Your WordPress with Adsense Deluxe</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/plugins/custom-google-search-results-page-on-your-wordpress-with-adsense-deluxe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Themes that use widgets, and the widgets you can use</title>
		<link>http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/</link>
		<comments>http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 18:57:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/</guid>
		<description><![CDATA[<p>WordPress Widgets (WPW) is a plugin designed to provide a simple way to arrange the various elements of your sidebar content without having to change any code. Widget Themes and Widgets&#62;&#62;</p><p>This post was originally published at <a href="http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/">Themes that use widgets, and the widgets you can use</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/" data-url="http://illum.in/qTltod" data-text="Themes that use widgets, and the widgets you can use" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/"></g:plusone></div></div><blockquote><p>WordPress Widgets (WPW) is a plugin designed to provide a simple way to arrange the various elements of your sidebar content without having to change any code.</p></blockquote>
<p><a href="http://codex.wordpress.org/Plugins/WordPress_Widgets" title="WordPress Widgets and Widget Themes">Widget Themes and Widgets&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/">Themes that use widgets, and the widgets you can use</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/themes/themes-that-use-widgets-and-the-widgets-you-can-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert a non-widget theme to a widget-ready one</title>
		<link>http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/</link>
		<comments>http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 10:10:46 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/</guid>
		<description><![CDATA[<p>Alpesh Nakar gives really simple instructions on how to take your non-widget theme and make it widget-ready. So far widgets and I haven&#8217;t gotten along very well, but who knows, maybe one day I&#8217;ll become a follower&#8230; HowTo: Convert Non-Widget to Widget Ready WordPress Theme&#62;&#62;</p><p>This post was originally published at <a href="http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/">How to convert a non-widget theme to a widget-ready one</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:right;"><div class="socialize-in-button socialize-in-button-right"><a href="http://twitter.com/share" class="twitter-share-button" data-counturl="http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/" data-url="http://illum.in/n04ipe" data-text="How to convert a non-widget theme to a widget-ready one" data-count="vertical" data-via="wpgarage" data-related="wpgarage"><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-right"><iframe src="http://www.facebook.com/plugins/like.php?href=http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/&amp;layout=box_count&amp;show_faces=true&amp;width=50&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px !important; height:65px;" allowTransparency="true"></iframe></div><div class="socialize-in-button socialize-in-button-right"><g:plusone size="tall" href="http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/"></g:plusone></div></div><p><a href="http://alpesh.nakars.com/blog/" title="Alpesh Nakars' Blogosphere">Alpesh Nakar</a> gives <a href="http://alpesh.nakars.com/blog/2007/02/21/howto-convert-non-widget-to-widget-ready-wordpress-theme/" title="howto: convert non-widget to widget-ready wordpress theme">really simple instructions</a> on how to take your non-widget theme and make it widget-ready. So far widgets and I haven&#8217;t gotten along very well, but who knows, maybe one day I&#8217;ll become a follower&#8230;<a href="http://alpesh.nakars.com/blog/2007/02/21/howto-convert-non-widget-to-widget-ready-wordpress-theme/" rel="bookmark" title="Permanent Link to "></a></p>
<p><a href="http://alpesh.nakars.com/blog/2007/02/21/howto-convert-non-widget-to-widget-ready-wordpress-theme/" rel="bookmark" title="Permanent Link to ">HowTo: Convert Non-Widget to Widget Ready WordPress Theme&gt;&gt;</a></p>
<p>This post was originally published at <a href="http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/">How to convert a non-widget theme to a widget-ready one</a> on <a href="http://wpgarage.com">WP Garage</a> - <a href="http://wpgarage.com">WP Garage - wordpress tricks, hacks, and tips</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/tips/how-to-convert-a-non-widget-theme-to-a-widget-ready-one/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

