<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Wordpress Garage</title>
	
	<link>http://wordpressgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Thu, 04 Jun 2009 13:31:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/WordpressGarage" type="application/rss+xml" /><feedburner:emailServiceId>WordpressGarage</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>How to create a Simple Directory in Wordpress using Grandparent, Parent, and Child Pages</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/yr90ssOorww/</link>
		<comments>http://wordpressgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 10:04:13 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[child]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[grandparent]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[parent]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=464</guid>
		<description><![CDATA[I wanted to create a simple directory of non-profit organizations. To do so,   I wanted to use pages for the directory, rather than posts so that I could separate the static directory listings from the dynamic blog posts. I didn&#8217;t want to have to exclude tons of categories from feedburner and the main loop.
So, [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">I wanted to create a simple directory of non-profit organizations. To do so,   I wanted to use pages for the directory, rather than posts so that I could separate the static directory listings from the dynamic blog posts. I didn&#8217;t want to have to exclude tons of categories from feedburner and the main loop.</p>
<p>So, I started exploring the whole family in Wordpress &#8211; grandparents, parents, and children. Translation for those not yet used to seeing Wordpress analagous to the family in My Big Fat Greek Wedding: Pages, sub-pages, and sub-sub pages</p>
<p><strong>Simple Directory Setup<br />
</strong></p>
<ul>
<li>Directory Page (grandparent): Displays list of Non-Profit Organization Categories  (ex. social, environment, health, etc.)</li>
<li>Category Page (parent): Show title and excerpt of each Organization within a category (ex. Environment Organizations)</li>
<li>Single Organization Page (child/current): Show content about a single organization(ex.  SaveTheEarth &#8211; made up org for this example)</li>
</ul>
<p><strong>Here&#8217;s how to do it</strong></p>
<ol>
<li>Create a Page Called Directory. This will be the <strong>Directory Page</strong> (grandparent)</li>
<li>Find the Page ID. Let&#8217;s say the Page ID = 5. Depending on how you want to display the category info, you can</li>
<li> Manually add the name of each category, a short description and a link</li>
<li>Open up page.php so we can setup <strong>The Category Page</strong> (Parent Page). We want to show title and excerpts of each organization for each category.</li>
<li>Add this code to page.php &#8211; Checks if we&#8217;re on a sub page / child page of the Directory (Page ID =10) and if so, list the pages in alphabetical order with excerpts. For the excerpt, I&#8217;m using the plugin Limit Posts since it didn&#8217;t work with The Excerpt Reloaded.&lt;?php<br />
$current = $post-&gt;ID;<br />
$parent = $post-&gt;post_parent;<br />
$grandparent_get = get_post($parent);<br />
$grandparent = $grandparent_get-&gt;post_parent;<br />
?&gt;</p>
<p>&lt;?php if ( $post-&gt;post_parent==&#8221;10&#8243;   ){ ?&gt;<br />
&lt;?php $pageChildren = $wpdb-&gt;get_results(&#8221;SELECT *    FROM $wpdb-&gt;posts WHERE post_parent = &#8220;.$post-&gt;ID.&#8221;    AND post_type = &#8216;page&#8217; ORDER BY post_title ASC&#8221;, &#8216;OBJECT&#8217;);    ?&gt;</p>
<p>&lt;h2 class=&#8221;titles&#8221;&gt;&lt;a href=&#8221;&lt;? php echo get_permalink($pageChild-&gt;ID);  ?&gt;&#8221;&gt; &lt;? php echo $pageChild-&gt;post_title;  ?&gt;&lt;/a&gt;&lt;/h2&gt;</p>
<p>&lt;?php the_content_limit(280, &#8220;&#8221;); ?&gt;&lt;div class=&#8221;readmore&#8221;&gt;&lt;a href=&#8221;&lt;?php echo get_permalink($pageChild-&gt;ID); ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;? php echo $pageChild-&gt;post_title;   ?&gt;&#8221;&gt;Read More &amp;raquo;&lt;/a&gt;&lt;/div&gt;</p>
<p>(make sure to delete the space between &lt;? and php -  I had to to do that so it wouldn&#8217;t execute in this post)</li>
<li><strong>Single Organization Page </strong>(Child Page) On page.php, after the code you added in step 5, add this code that will check to see if we&#8217;re on the grandchild page. This will be the actual organization&#8217;s page. In our example, the SaveTheEarth Page. This is very helpful information in case you want to add a different style or add special items in the sidebar, etc.<br />
&lt;?php if ( $pageChildren ) : foreach ( $pageChildren as $pageChild ) : setup_postdata( $pageChild ); ?&gt;</li>
</ol>
<p style="padding-left: 30px;">7. Set up how the rest of the pages on your site will look:</p>
<p style="padding-left: 30px;">On page.php, after the code in step 6, add this code which instructs every other page in the site to act normally and display the content</p>
<p style="padding-left: 30px;">&lt;?php endforeach; ?&gt;<br />
&lt;?php else : ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php the_content(); ?&gt;<br />
&lt;?php  endif; ?&gt;</p>
<p style="padding-left: 30px;">
<p><strong>You can see the full page.php code <a href="http://wordpressgarage.com/wp-content/uploads/2009/06/page.txt">here</a></strong></p>
<p><strong>You can see the directory in action <a href="http://israelnonprofitnews.com/directory/">here</a><br />
</strong></p>
<p>I figured this out using the following helpful posts:</p>
<p>*<a href="http://wordpress.org/support/topic/186206"> http://wordpress.org/support/topic/186206</a><br />
* <a href="http://wpguru.co.za/page/display-title-excerpt-of-child-page">http://wpguru.co.za/page/display-title-excerpt-of-child-page</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=yr90ssOorww:ISkWPNKXU90:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=yr90ssOorww:ISkWPNKXU90:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=yr90ssOorww:ISkWPNKXU90:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=yr90ssOorww:ISkWPNKXU90:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=yr90ssOorww:ISkWPNKXU90:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/yr90ssOorww" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/</feedburner:origLink></item>
		<item>
		<title>Canonical URLs to help Wordpress duplicate content issue</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/N2oFjkEpGsU/</link>
		<comments>http://wordpressgarage.com/news-views/canonical-urls-to-help-wordpress-duplicate-content-issue/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 07:35:43 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[canonical urls]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=459</guid>
		<description><![CDATA[Fancy words aside, a canonical URL is Google&#8217;s way of identifying a  &#8220;preferred&#8221; URL for your posts to avoid duplicate content. Duplicate content is  generally defined as &#8220;separate web pages with substantially the same content,  which may attract a penalty from search engines.&#8221;
Wordpress is often criticized for having duplicate content since new [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Fancy words aside, a canonical URL is Google&#8217;s way of identifying a  &#8220;preferred&#8221; URL for your posts to avoid duplicate content. Duplicate content is  generally defined as &#8220;separate web pages with substantially the same content,  which may attract a penalty from search engines.&#8221;</p>
<p>Wordpress is often criticized for having duplicate content since new posts  appear on many pages including category pages, archive pages, feeds, and  trackbacks.  While this helps visitors find the content they are looking for, it  confuses search engines, forcing them to &#8220;choose&#8221; which URL to serve in search  results.</p>
<p>And so&#8230; Google (Yahoo and Microsoft too)  recently came out with a new link  tag to help with the <a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html" target="_blank">duplicate  content issue</a> which can be added to the &lt;head&gt; section of the  duplicate content URLs.</p>
<p>&lt;link rel=&#8221;canonical&#8221;  href=&#8221;<a href="http://www.example.com/product.php?item=swedish-fish" target="_blank">http://www.example.com/product.php?item=swedish-fish</a>&#8221; /&gt;</p>
<p>But honestly, who can be bothered to go into the &lt;head&gt; for every post.  Luckily, there are 2 Wordpress plugins that are here to help:</p>
<p><a href="http://yoast.com/wordpress/canonical/" target="_blank">Yoast</a> adds  rel=&#8221;canonical&#8221; links to your blogs &lt;head&gt; section</p>
<p><a href="http://wordpress.org/extend/plugins/seo-no-duplicate/" target="_blank">SEO No  duplicate</a> &#8211; This simple plugin helps you easily tell the search engine bots  the preferred version of a page by specifying the canonical properly within your  head tag.</p>
<p>For more information, read the <a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html" target="_blank">official  announcement</a> from Google.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fcanonical-urls-to-help-wordpress-duplicate-content-issue%2F&amp;title=Canonical+URLs+to+help+Wordpress+duplicate+content+issue" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=OTdi9TLo"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=HlewKkam"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=HlewKkam" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=TKNKhZLn"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=TKNKhZLn" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/N2oFjkEpGsU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/news-views/canonical-urls-to-help-wordpress-duplicate-content-issue/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/canonical-urls-to-help-wordpress-duplicate-content-issue/</feedburner:origLink></item>
		<item>
		<title>Wordpress Plugins Directory Search no longer “sucks”</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/BgTBRXQDdJE/</link>
		<comments>http://wordpressgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 06:57:03 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=454</guid>
		<description><![CDATA[I just received an email from Matt Mullenweg, founder of Wordpress, letting me know that the &#8220;Plugin search no longer sucks&#8221;.  I was so excited that I didn&#8217;t even notice the typo he later reported on Twitter.
According to the official Wordpress site, Wordpress Plugins directory search is no longer a big mess, and can actually [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">I just received an email from Matt Mullenweg, founder of Wordpress, letting me know that the &#8220;Plugin search no longer sucks&#8221;.  I was so excited that I didn&#8217;t even notice the typo he later reported on <a href="http://twitter.com/photomatt/status/1225360144" target="_blank">Twitter</a>.</p>
<p>According to the official <a href="http://wordpress.org/development/2009/02/new-and-improved-plugins-directory-search/" target="_blank">Wordpress site</a>, Wordpress Plugins directory search is no longer a big mess, and can actually help you find the plugin you&#8217;re looking for. Last week I think I did a search for &#8220;video&#8221; and got results like contact form, social bookmarking, etc. and had to resort to a Google search. But now the search brings up much better results and is a great resource.</p>
<p>Wordpress improved the search using <a href="http://www.sphinxsearch.com/" target="_blank">Sphinx</a> (a &#8220;free open-source SQL full-text search engine&#8221;) to power the search from the <a href="http://wordpress.org/extend/plugins" target="_blank">plugins directory</a> and from your blog&#8217;s admin area (Plugins&gt;add new)</p>
<p>All I can say, is, give it another chance and you may just find a great plugin from the 4,245 available.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%26%238220%3Bsucks%26%238221%3B" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=LFwJNXnT"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=miqI0IXx"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=miqI0IXx" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=GGQcll3I"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=GGQcll3I" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/BgTBRXQDdJE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/</feedburner:origLink></item>
		<item>
		<title>WordCamp Israel 2008 part 2: my presentations on WordPress.com and Social Media</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/VaUaerBrMdg/</link>
		<comments>http://wordpressgarage.com/news-views/wordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 23:58:01 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Wordcamp Israel 2008]]></category>
		<category><![CDATA[wordpress.com]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=382</guid>
		<description><![CDATA[As you may have seen, Rebecca already wrote up a great review of Sunday&#8217;s 2nd WordCamp Israel event. I was privileged to present two short presentations at the event, which I have finally uploaded for all to see. Note that the images and titles of plugins or sites are all links, and you can click [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">As you may have seen, Rebecca already wrote up a great <a title="Review of WordCamp Israel" href="http://wordpressgarage.com/news-views/review-of-wordcamp-israel-2008/">review of Sunday&#8217;s 2nd WordCamp Israel</a> event. I was privileged to present two short presentations at the event, which I have finally uploaded for all to see. Note that the images and titles of plugins or sites are all links, and you can click on them to get to the actual sites in question.</p>
<h2>Setting up a blog with good foundations for the future on WordPress.com or Blogli</h2>
<p>Many people prefer to start their blogging career on free sites like WordPress.com, or the Israeli version called Blogli. These sites take away the headache involved in installing the software and managing technical issues. They also allow for a soft start with little financial investment.</p>
<p>However, if you are serious about blogging, then you will want to see your blog grow. As it grows, you may find that it outgrows the limitations of WordPress.com, where you can&#8217;t upload plugins or completely customize the appearance of your blog. So while using WordPress.com for your blog is a great choice, you should make sure to implement a few things to ensure that if you do decide to move to a self-hosted blog in the future, it&#8217;s not too painful. The most important thing, in my opinion, is to use your own domain name from the start on WordPress.com by upgrading your account. It costs about $10 a month, and is worth it.</p>
<div id="__ss_773255" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Good foundations for your WordPress.com blog" href="http://www.slideshare.net/illuminea/good-foundations-for-your-wordpresscom-blog-presentation?type=powerpoint">Good foundations for your WordPress.com blog</a><object width="425" height="355" data="http://static.slideshare.net/swf/ssplayer2.swf?doc=wordcamp2008wordpresscom-1227216940289140-9&amp;stripped_title=good-foundations-for-your-wordpresscom-blog-presentation" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=wordcamp2008wordpresscom-1227216940289140-9&amp;stripped_title=good-foundations-for-your-wordpresscom-blog-presentation" /><param name="allowfullscreen" value="true" /></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View SlideShare <a style="text-decoration:underline;" title="View Good foundations for your WordPress.com blog on SlideShare" href="http://www.slideshare.net/illuminea/good-foundations-for-your-wordpresscom-blog-presentation?type=powerpoint">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/wordpress">wordpress</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/2008">2008</a>)</div>
</div>
<h2>Automating your blogging and social media activity</h2>
<p>A site or blog is no longer enough if you want to create a web presence that really works for you. It is important to integrate social media into your online strategy so that people can find you off your site as well. But we all know that managing a blog takes tons of time; how in the world do we find time to also manage social media profiles?</p>
<p>This presentation shows you plugins and online apps that will help you automate many of your social media/blogging activities to save you time, and make sure you can still have a bit of life offline too.</p>
<div id="__ss_773385" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Automating your blogging and social media activity" href="http://www.slideshare.net/illuminea/automating-your-blogging-and-social-media-activity-presentation-773385?type=powerpoint">Automating your blogging and social media activity</a><object width="425" height="355" data="http://static.slideshare.net/swf/ssplayer2.swf?doc=wordcamp2008social-media-1227221228140276-8&amp;stripped_title=automating-your-blogging-and-social-media-activity-presentation-773385" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=wordcamp2008social-media-1227221228140276-8&amp;stripped_title=automating-your-blogging-and-social-media-activity-presentation-773385" /><param name="allowfullscreen" value="true" /></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View SlideShare <a style="text-decoration:underline;" title="View Automating your blogging and social media activity on SlideShare" href="http://www.slideshare.net/illuminea/automating-your-blogging-and-social-media-activity-presentation-773385?type=powerpoint">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/2008">2008</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/israel">israel</a>)</div>
</div>
<p>And finally, here are links to some other people who wrote about WordCamp Israel 2008 both before and after the event:</p>
<p><a title="Permanent Link: WordCamp Israel Has 560 Registrants" rel="bookmark" href="http://wordcamp.info/2008/11/14/wordcamp-israel-has-560-registrants/">WordCamp Israel Has 560 Registrants</a></p>
<p><a rel="bookmark" href="http://www.nivcalderon.com/photos-links-wordcamp-israel-2008/">Photos and Links from Wordcamp Israel 2008</a></p>
<p><a class="external" title="http://www.talgalili.com/?p=491" href="http://www.talgalili.com/?p=491">??????? ????? 2008 &#8211; ???? ????? ??? ???? ?????</a></p>
<p><a class="external" title="http://www.flickr.com/photos/dibau_naum_h/3034685634/" href="http://www.flickr.com/photos/dibau_naum_h/3034685634/">WordCamp &#8211; Raanan Bar-Cohen &#8211; Tips for &#8220;virtual&#8221; company</a></p>
<p><a class="external" title="http://raanan.com/2008/11/15/wordcamp-israel/" href="http://raanan.com/2008/11/15/wordcamp-israel/">WordCamp Israel</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fwordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media%2F&amp;title=WordCamp+Israel+2008+part+2%3A+my+presentations+on+WordPress.com+and+Social+Media" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=7aHIOdCQ"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=rxdG8laN"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=rxdG8laN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=XYWfF7S8"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=XYWfF7S8" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/VaUaerBrMdg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/news-views/wordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/wordcamp-israel-2008-part-2-my-presentations-on-wordpresscom-and-social-media/</feedburner:origLink></item>
		<item>
		<title>How to rename widgetized sidebars in Wordpress</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/3XYNCWf1Xjs/</link>
		<comments>http://wordpressgarage.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[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, [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">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(&#8217;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(&#8217;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8217;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(&#8217;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(&#8217;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8217;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://wordpressgarage.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>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Frename-widgetized-sidebars-in-wordpress%2F&amp;title=How+to+rename+widgetized+sidebars+in+Wordpress" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=eDQ3a5cb"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=zQ2jPHHQ"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=zQ2jPHHQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=fsmMLPPG"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=fsmMLPPG" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/3XYNCWf1Xjs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/code-snippets/rename-widgetized-sidebars-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Review of Wordcamp Israel 2008</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/suwwc0uVQ7A/</link>
		<comments>http://wordpressgarage.com/news-views/review-of-wordcamp-israel-2008/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 04:35:19 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Wordcamp Israel 2008]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/news-views/review-of-wordcamp-israel-2008/</guid>
		<description><![CDATA[
Being that Wordcamp Israel was a bloggers conference in Tel Aviv, I&#8217;m sure there will be tons of people writing up their reviews in Hebrew. But maybe not quite as many in English, so here goes. This year&#8217;s Wordcamp was in the ZOA house in the middle of Tel Aviv, a schlep for Jerusalemites, but [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first"><a href="http://wordpressgarage.com/wp-content/uploads/2008/11/wordcamp.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/11/wordcamp-thumb.png" border="0" alt="wordcamp" width="221" height="155" /></a></p>
<p>Being that <a href="http://2008.wordcamp.co.il/">Wordcamp Israel</a> was a bloggers conference in Tel Aviv, I&#8217;m sure there will be tons of people writing up their reviews in Hebrew. But maybe not quite as many in English, so here goes. This year&#8217;s Wordcamp was in the ZOA house in the middle of Tel Aviv, a schlep for Jerusalemites, but a great location for everybody else.</p>
<p><strong>The Shmoozing</strong></p>
<p>And they&#8217;re off, let the shmoozing begin. Instead of sitting in a corner, hoping someone would come talk to me, I started standing and sitting strategically next to people who looked friendly. The first guy I met was <a href="http://www.blog.selaeyal.com/">Eyal Sela</a>, who plans to write about productivity on his brand new Wordpress blog, still in its Kubrick diapers. Throughout the rest of the day, I met Itzik Edri of <a href="http://il.wikimedia.org/wiki/%D7%A2%D7%9E%D7%95%D7%93_%D7%A8%D7%90%D7%A9%D7%99">Wikimedia</a>(trying to get more people to use Wikipedia), Eyal Gura, CEO of <a href="http://picapp.com">PicApp</a> (a legal image solution for bloggers), Eyal Beit-On, of <a href="http://suntrader.com">Suntrader</a> (online marketing consultant), and Amir Uval(new Hebrew blogger at <a href="http://geekinthekitchen.wordpress.com/">Geek in the Kitchen</a>). Are you keeping track? So far, that&#8217;s 3 Eyals. I also got to hang out with the founders of <a href="http://nuconomy.com">Nuconomy</a>, Eran Kampf and Yossi Taguri. Toward the end, I sat with <a href="http://twitter.com/ezrabutler">Ezra Butler</a>, (of Twitter fame), <a href="http://j-town.co.il/">Charlie Kalech</a>,  <a href="http://marketingmorsels.com/">Debby Benstein</a>, <a href="http://ip-manage.co.il">Eyal Gonen</a>, <a href="http://pixane.net/blog">Idan Gazit</a>(new Twitter friend), and <a href="http://testuff.com">Ido Shacham</a>. If you&#8217;re counting, out of 13 people that I met, 4 happened to be named Eyal.</p>
<p><strong>The Organizers</strong></p>
<p>The conference officially started with co-organizers <a href="http://www.talgalili.com/">Tal Galili</a> (who cut his hair) and <a href="http://www.whiskology.co.il/">Noa Danzig</a>(who may or may not have cut her hair) welcoming everyone and telling us that they planned the conference in less than 2 months, and worked extra hard to include non-profits by creating an additional track of sessions.</p>
<p><strong>The Sessions</strong></p>
<p>I didn&#8217;t get a chance to go to every session, so I would love if people added their comments about the sessions they went to. You can see the <a href="http://2008.wordcamp.co.il/schedule/">full schedule here.</a></p>
<p><strong>Session: Blogs built on Wordpress.com / Miriam Schwab</strong></p>
<p>From what I heard, Miriam gave a great presentation on the features and limitations of Wordpress.com, and its viability only in the short term. Presentation slides will be posted here shortly.</p>
<p><strong>Session: 70 unusual uses for Wordpress / Sarit Amar and Tomer Lichtish</strong></p>
<p>While it was hard to decide which sessions to go to, I ventured for the &#8220;70 unusual uses for Wordpress&#8221;. But, according to my desktop scientific calculator, only 4 were mentioned:</p>
<ol>
<li>Contact Manager &#8211; Using a special template, you can enter each name as the link the a post which contains someone&#8217;s contact details.  You can also find people through the tag cloud.</li>
<li>e-Commerce/store</li>
<li>Portfolio &#8211; using thumbnails as links to each piece in the portfolio.</li>
<li>Lifestreaming &#8211; updates from Twitter, facebook, flickr, youtube, etc. to represent your “online” life. A way to bring the focus back to the blog.</li>
</ol>
<p>This session was a little basic for me and could have used specific links to themes and plugins that help you create these special Wordpress sites. I&#8217;m hoping there&#8217;s a link online to the other 66 interesting uses.</p>
<p><strong>Session: Blogging with Video / Ron Yekuteal, Kaltura</strong></p>
<p><a href="http://corp.kaltura.com/">Kaltura</a> is the first open source video platform, and they have a plugin for Wordpress. Ron said that Kaltura is free, flexible, and most importantly, open source. This plugin supposedly offers a lot of functionality and I&#8217;m looking forward to trying it out.</p>
<p><strong>Session: Social Media Marketing / Miriam Schwab</strong></p>
<p>Since I couldn&#8217;t clone myself and be at Miriam&#8217;s talk, even though I wanted to, I listened to other people&#8217;s reviews. People said Miriam encouraged quality content on your blog, your home base, and to be a part of the conversation on social media sites by contributing and helping others, since that&#8217;s where your audience is. She also listed Wordpress plugins that can boost your &#8217;social proof&#8217; on your website by displaying your activity around the web. Presentation slides will be posted here shortly.</p>
<p><strong>Session: Statistics / Zvika Jervy of </strong><a href="http://www.swc.co.il/"><strong>Statistics Web Control</strong></a><strong> and Yosi Taguri of </strong><a href="http://nuconomy.com"><strong>Nuconomy</strong></a><strong>.</strong></p>
<p>Zvika spoke about the basics of Google Analytics to check number of visitors, referrers, time spent on the site, and top content, Technorati to check incoming links/authority, and Feedburner to check feed count.</p>
<p>Yosi spoke about Nuconomy&#8217;s plugin for Wordpress which offers statistics beyond pages, such as clicks on video and Ajax. It also lets you see stats on commenters and compare lots of different data sets for a bigger picture of stats and user interaction with your site.</p>
<p><strong>Session: Virtual Collaboration, Raanan Bar-Cohen, Automattic</strong></p>
<div id="__ss_757340" style="width: 425px; text-align: left;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=wpautomatticwcfinal-1226848573811925-8" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=wpautomatticwcfinal-1226848573811925-8"></embed></object></div>
<p>Originally from<img src="http://raanan.files.wordpress.com/2007/12/raanan_headshot_rounded_cropped.jpg" alt="" align="left" /> Israel, <a href="http://raanan.com/">Raanan</a> now lives in California working for Automattic (the company who created Wordpress), and playing Adam Sandler roles on the side (<a href="http://illuminea.com">Miriam</a> pointed this out, and I have to say, I agree, they do have a striking similarity). And, to my delight, Raanan delivered his presentation in English, a welcome treat for my Hebrew overloaded brain.  Raanan was a really great speaker and offered some tips on running a virtual company, since Automattic has 30 employees scattered around the globe in every possible time zone.</p>
<ol>
<li>Empower your team &#8211; everyone should have ownerships of their projects, and set their own hours.</li>
<li>Go real time &#8211; yay for searchable, storable group chats and boo to email</li>
<li>Go semi real time &#8211; use internal blogs and  Prologue (group twitter)</li>
<li>Get together &#8211; coordinate conferences and meetups for real, in-person get togethers</li>
<li>Open Source &#8211; more opportunities to get help and gain insights from others</li>
<li>Metrics -  compare many different tracking services and data points</li>
<li>Go bite size &#8211; ticket tracking, break down a project into small pieces</li>
</ol>
<p>He also gave a sneak peek into Prologue Groups, Wordpress&#8217;s project tracker, plus Twitter-like chat, which launchesin 2 weeks at Wordcamp Australia. And finally, he gave a heads up that BuddyPress, Wordpress&#8217;s Social Networking Platform will be available in December.</p>
<p><strong>Session: Panel with Knesset Member Miki Eitan with host Jonathon Klinger</strong></p>
<p>Set up like a late night talk show, Jonathon Klinger played host to <a href="http://en.wikipedia.org/wiki/Likud">Likud</a> <a href="http://en.wikipedia.org/wiki/Michael_Eitan">MK Miki Eitan</a> and 3 other guys. I apologize, but I didn&#8217;t see their names in the program or online. Please feel free to comment with their names and organizations. [Update: Other panelists were Yoav Lerman from a blog about the renewal of Tel Aviv, Zvika Bashur from CityDov blog, and Yochai Ilam from Black Labor blog.]</p>
<p>MK Eitan was invited to be on the panel because he started a <a href="http://www.miki.org.il/index.php">blog</a> built on Wordpress. When asked why he chose Wordpress, he said, &#8220;it was the  cheapest option&#8221;. Other memorable quotes (probably not exact) included &#8220;You don’t need to be a Likudnik to believe in Miki Eitan&#8221;, a subtle plug, and &#8220;As you can see by my ability to choose a low-cost solution for my blogging, I also know how to create a balanced budget for the country&#8221;. As the wise <a href="http://twitter.com/miriamschwab">Miriam</a> pointed out, Miki is trying to take Obama&#8217;s strategy by creating a trendy site and a new slogan that translates roughly to: &#8220;To prove that things can be different&#8221;. What Mr. Eitan didn&#8217;t cover exactly was what those changes would be and how he would implement them. Sheesh, people, who can be bothered with details?!</p>
<p>When asked if Mr. Eitan writes his own posts, he said yes! Can you believe it?! Haha, Just kidding. He&#8217;s a politician who doesn&#8217;t see the ROI in blogging himself and therefore asked his assistant, hiding in the corner, how much time he invests in the blog. The assistant responded by saying 1 hour a day.</p>
<p>I&#8217;m sorry, but a Likud MK showing up at a bloggers convention reminds me of a similar situation (((Twilight Zone music here))) when Bibi Netanyahu showed up at the <a href="http://israelplug.com/social-media/nbn-first-international-jewish-bloggers-conference-exhausting/">JBloggers Convention</a>.  Why does every blogger convention end with a  rally for Likud? Am I missing something here? Have we finally caught on to their sly little plan?</p>
<p><strong>Session: Introduction to Wordpress Plugins / Ziv Perry</strong></p>
<p>This session was very high level, and I think should have been publicized as such. Ziv showed how to create a basic Wordpress plugin, but If you don&#8217;t already have a solid grasp of PHP or the guts of Wordpress, then this session was probably way over your head.</p>
<p><strong>Session: Home, sweet Jerusalem</strong></p>
<p>Sorry to say, I didn&#8217;t make it to the very last sessions, but Kol Hakavod to the organizers, and to meeting and seeing lots of fellow Wordpress junkies, er.. people. My recommendation for next year&#8217;s Wordcamp would be to have 2 tracks, one for beginners and one for advanced Wordpress users.</p>
<p>And last, but not least, I got a hilarious sticker that says <a href="http://www.justsayno.co.il/">&#8220;Lo Nachon&#8221; (Not true)</a>, and the purpose being that if you ever see a bumper sticker you disagree with, you can discredit it by placing your &#8220;not true&#8221; sticker next to it. Oh, people, you are so witty, how did you know that is exactly my type of humor?!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Freview-of-wordcamp-israel-2008%2F&amp;title=Review+of+Wordcamp+Israel+2008" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=wRbrb9lE"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=tVtt7Cx8"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=tVtt7Cx8" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=6kqMsIKs"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=6kqMsIKs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/suwwc0uVQ7A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/news-views/review-of-wordcamp-israel-2008/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/review-of-wordcamp-israel-2008/</feedburner:origLink></item>
		<item>
		<title>Is there an alternative to Feedburner?</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/3nWhPIZYDEI/</link>
		<comments>http://wordpressgarage.com/news-views/is-there-an-alternative-to-feedburner/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:01:04 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[News & Views]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[feeds]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=374</guid>
		<description><![CDATA[We all use Feedburner to track our RSS subscribers. It&#8217;s not just to feed that egotistical need to know how many people are hanging onto our every word, but the number of RSS feed subscribers you have is an important metric for indicating the success (or failure) of your blog. It seems that the number [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">We all use <a title="Feedburner" href="http://feedburner.com">Feedburner</a> to track our RSS subscribers. It&#8217;s not just to feed that egotistical need to know how many people are hanging onto our every word, but the number of RSS feed subscribers you have is an important metric for indicating the success (or failure) of your blog. It seems that the number of subscribers has a connection with the number of visitors to a site since I&#8217;ve found that the number of people visiting a site seems to rise in relation to the number of feed subscribers, but this metric also indicates the stickiness of your content.</p>
<p>But recently Feedburner has not been behaving. We have one client whose feed consistently showed a page that said something like &#8220;Kraaak bork, your Feedburner feed is not working,&#8221; a stressful site to say the least for a guy who wants to make sure his feed subscribers are getting his content. Many people have been complaining about problems with Feedburner in the last while: ReadWriteWeb reported that <a title="FeedBurner May Not Be Hearing Your Pings" href="http://www.readwriteweb.com/archives/feedburner_may_not_be_hearing.php">Feedburner was slow on pinging feeds</a>, and over here at WordPress Garage I had the pleasure of watching our readers plunge from 1030 to 380. The next day the number went back up, and I can&#8217;t imagine it&#8217;s because 700 of you unsubscribed and then regretted your decision and resubscribed.</p>
<p>(And may I just take this opportunity to thank all our subscribers for sticking with us. We love you. You rock.)</p>
<p>Anyways, this situation is yet another example of the scariness of a) <a title="Google's Silent Monopoly (Or How Much Does Google Pay For Its Own AdWords?)" href="http://blog.centraldesktop.com/comments.php?y=06&amp;m=12&amp;entry=entry061206-010627">The</a> <a title="Should you be concerned over Google's monopoly?" href="http://www.rankforsales.com/n-an/454-seo-feb-28-04.html">Google</a> <a title="It's Unofficial: Google's a Monopoly (Googolopoly)" href="http://blog.searchenginewatch.com/blog/080416-101123">monopoly</a> (Google bought Feedburner) and b) The problem with allowing services to &#8220;own&#8221; your content. This is similar to the problem with hosting your blog on WordPress.com, <a title="4 reasons not to host your blog on WordPress.com" href="http://wordpressgarage.com/tips/4-reasons-not-to-host-your-blog-on-wordpresscom/">which I&#8217;ve discussed here in the past</a>. In the case of Feedburner, your are at their mercy if they have trouble with the service, or if for some reason they decide to cancel your account, in which case  you lose all your preciously collected subscribers.</p>
<p>So&#8230;the question is: <strong>is there an alternative to Feedburner?</strong> After doing a bit of searching, I found the following alternative ways for measuring feed subscribers:</p>
<ol>
<li><strong>Check how many people are subscribed to your blog on feed reader services that offer these types of stats, like <a title="Bloglines" href="http://www.bloglines.com/">Bloglines</a> and <a title="Google Reader" href="http://www.google.com/reader/">Google Reader</a>.</strong> See <a title=" Another way to measure the popularity of blogs: their number of feed subscribers" href="http://www.midasoracle.org/2007/10/24/another-way-to-measure-the-popularity-of-blogs-their-number-of-feed-subscribers/">this post</a> for instructions on how to see the number of subscribers on each service. This solutions would allow you to see general trends, like if the number of subscribers is going up or down, and you could even calculate percentage growth or decline. However, you would not get a good indication of the total number of subscribers on all feed readers.</li>
<li>(The following methods were all described on <a title="How to Track RSS Subscribers?" href="http://www.freemarketingzone.com/rss/track-rss-subscribers.html">this post</a> on the <a title="Free Marketing Zone" href="http://www.freemarketingzone.com/">Free Marketing Zone</a>.) <strong>Access logs: </strong>Use server logs to track how many times your feed page was accessed. This apparently does not give accurate results.</li>
<li><strong>Images:</strong> Put a 1px by 1px image in your feed, which will be accessed every time your feed is opened in a reader. However, this only tells you how many people are reading your RSS, not how many are subscribed.</li>
<li><strong>RSS Buttons: </strong> track the number of clicks of your image button that leads to an RSS feed. This is also not accurate since some people may just click and then not subscribe, and many people subscribe to an RSS feed without clicking on a button on your site; they use the RSS access in their browsers address bar, or simply enter your site&#8217;s URL in their feed reader, and the reader detects the URL automatically.</li>
<li><strong>Tracking URL: </strong>Create a unique URL for every click to access the feed, so that whenever a person clicks the button, a unique URL is assigned, like the following: http://domain.com/feed.xml?uniqueurl_countvisitors. But I don&#8217;t know about that option &#8211; it sounds a bit much to create so many new URLs for a site.</li>
</ol>
<p>As you can see, these options are ok, but not great. So if anyone knows of another service that provides feed subscription stat services, please let us know. And if there isn&#8217;t another option, please can someone create one? It would do all of us a great service.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fnews-views%2Fis-there-an-alternative-to-feedburner%2F&amp;title=Is+there+an+alternative+to+Feedburner%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=61Opq6Ol"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=ewE5yoHD"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=ewE5yoHD" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=7osKLY1E"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=7osKLY1E" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/3nWhPIZYDEI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/news-views/is-there-an-alternative-to-feedburner/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/is-there-an-alternative-to-feedburner/</feedburner:origLink></item>
		<item>
		<title>Revolution themes enters next evolution</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/haUHhLQLTWE/</link>
		<comments>http://wordpressgarage.com/themes/revolution-themes-enters-next-evolution/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 09:04:00 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[magazine themes]]></category>
		<category><![CDATA[premium themes]]></category>
		<category><![CDATA[Wordpress themes]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=375</guid>
		<description><![CDATA[You&#8217;ve probably heard the news, but I&#8217;m going to join the echo chamber anyways: Brian Gardner has taken his &#8220;Revolution&#8221; into a new Open Source evolution over at Revolution Two. Now he has a bunch of partners, and the themes are released under Open GPL license, which pretty much means you can use them any [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first"><a href="http://www.revolutiontwo.com"><img class="alignleft size-full wp-image-376" title="Revolution Two" src="http://wordpressgarage.com/wp-content/uploads/2008/10/logo.gif" alt="" width="360" height="71" /></a>You&#8217;ve probably heard the news, but I&#8217;m going to join the echo chamber anyways: <a title="Brian Gardner" href="http://www.briangardner.com/">Brian Gardner</a> has taken his &#8220;Revolution&#8221; into a new Open Source evolution over at <a title="Revolution Two" href="http://www.revolutiontwo.com/">Revolution Two</a>. Now he has <a title="Revolution Two Team" href="http://www.revolutiontwo.com/team">a bunch of partners</a>, and the themes are released under Open <a title="GPL License" href="http://www.opensource.org/licenses/gpl-license.php">GPL license</a>, which pretty much means you can use them any way you like and for any (legal) purposes. The business model is that people can <a title="Signup for Revolution Two" href="http://www.revolutiontwo.com/signup">buy membership packages</a> which gives them access to advice and guidance related to the themes, as well as custom design services and <a title="Revolution Two hosting" href="http://www.revolutiontwo.com/webhosting">hosting</a> .</p>
<p>The <a title="Premium Revolution Theme" href="http://news.revolutiontheme.com/">premium Revolution themes</a> will be available until tomorrow, and at midnight they will turn into a pumpkin. But no worries &#8211; the new themes look fantastic, and really add to the WordPress community.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fthemes%2Frevolution-themes-enters-next-evolution%2F&amp;title=Revolution+themes+enters+next+evolution" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=JxUczBO5"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=oN6y28m4"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=oN6y28m4" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=KhMbjNPW"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=KhMbjNPW" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/haUHhLQLTWE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/themes/revolution-themes-enters-next-evolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/themes/revolution-themes-enters-next-evolution/</feedburner:origLink></item>
		<item>
		<title>Best 4 Wordpress Calendar plugins</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/2jdqSvkIzWc/</link>
		<comments>http://wordpressgarage.com/plugins/wordpress-calendar-plugins/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 13:31:47 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[upcoming events]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/wordpress-calendar-plugins/</guid>
		<description><![CDATA[Here&#8217;s a review of 4 of the most comprehensive calendar plugins that Wordpress has to offer. I tried out each one and tracked the features, pros, and cons.  Which calendar are you using? Send a link so we can see some more examples.  For a full list Wordpress calendar plugins, click here.
Still in search of [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Here&#8217;s a review of 4 of the most comprehensive calendar plugins that Wordpress has to offer. I tried out each one and tracked the features, pros, and cons.  Which calendar are you using? Send a link so we can see some more examples.  For a full list <a href="http://wordpress.org/extend/plugins/tags/calendar">Wordpress calendar plugins, click here.</a></p>
<p><strong>Still in search of a perfect calendar&#8230;</strong></p>
<p>I still have hopes and dreams that the perfect calendar is out there somewhere, but I can&#8217;t seem to find The One. I&#8217;m looking for a Wordpress compatible calendar that can do the following:</p>
<ul>
<li>recurring events &#8211; monthly, weekly, bi-weekly</li>
<li>month view</li>
<li>list view with option to see 15 results for upcoming events and then to click &#8220;Next&#8221; to see next results</li>
<li>import a csv file of ongoing events</li>
<li>Advanced search functionality to do the following. For example, search for Events in New York City on December 1. Or to search by venue, city, topic, and other categories.</li>
<li>RSS events feed</li>
<li>user level management &#8211; a way for different organizations to submit and manage their own events</li>
<li>Email notifications when someone has added or edited an event</li>
</ul>
<p><a href="http://wordpress.org/extend/plugins/event-calendar/"><strong></strong></a></p>
<h1><a href="http://wordpress.org/extend/plugins/event-calendar/">Event Calendar 3 by Alex Tingle<br />
</a></h1>
<p>Display upcoming events in a dynamic calendar, on a listings page, or as a list in the sidebar.</p>
<h1><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/eventcalendar3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/eventcalendar3-thumb.png" border="0" alt="eventcalendar3" width="157" height="244" /></a></h1>
<p><strong>Features</strong></p>
<ul>
<li>iCal feed subscription</li>
<li>sidebar widget &#8211; monthly &amp; list view</li>
<li>easy admin to add events from Write&gt;Post</li>
<li>links to a post for more details</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>no recurring events</li>
<li>no RSS event feed</li>
<li>no large view calendar</li>
<li>no categories</li>
<li>no fields within events such as location, contact person</li>
<li>no user level management</li>
</ul>
<h1><a href="http://wordpress.org/extend/plugins/calendar/">Calendar by Kieran O&#8217;Shea<br />
</a></h1>
<p>A simple calendar plugin for WordPress that allows you to  manage your events and display them in list or month format.</p>
<p><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/calendar.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/calendar-thumb.png" border="0" alt="Calendar" width="334" height="136" /></a></p>
<p><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/calendarupcoming.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/calendarupcoming-thumb.png" border="0" alt="calendarupcoming" width="189" height="161" /></a></p>
<p><strong>Features</strong></p>
<ul>
<li>Monthly view of events</li>
<li>Mouse-over details for each event</li>
<li>Events can have a timestamp (optional)</li>
<li>Events can display their author (optional)</li>
<li>Events can span more than one day</li>
<li>Multiple events per day possible</li>
<li>Events can repeat on a weekly, monthly or yearly basis</li>
<li>Repeats can occur indefinitely or a limited number of times</li>
<li>Easy to use events manager in admin dashboard</li>
<li>Sidebar function/Widget to show todays events</li>
<li>Sidebar function/Widget to show upcoming events</li>
<li>Comprehensive options panel for admin</li>
<li>Modifiable CSS using the options panel</li>
<li>Optional drop down boxes to quickly change month and year</li>
<li>User groups other than admin can be permitted to manage events</li>
<li>Events can be placed into categories</li>
<li>Categories system can be switched on or off</li>
<li>Pop up javascript calendars help the choosing of dates</li>
<li>Events can be links pointing to a location of your choice</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>no events feed</li>
<li>no fields within events such as location, contact person</li>
<li>no search feature</li>
<li>no bi-weekly recurring events</li>
<li>no way to import a csv of recurring events</li>
</ul>
<h1><a href="http://wordpress.org/extend/plugins/gigs-calendar/">Gigs Calendar by Dan Coulter<br />
</a></h1>
<p>This plugin is designed for bands touring but can be used for any events. <a href="http://wordpressgarage.com/wp-content/uploads/2008/10/gigcalendarfeed.png"></a><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/gigscalendarscreen.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/gigscalendarscreen-thumb.png" border="0" alt="gigscalendarscreen" width="537" height="44" /></a></p>
<h1><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/gigcalendarfeed-thumb.png" border="0" alt="gigcalendarfeed" width="244" height="140" /></h1>
<p><strong>Features</strong></p>
<ul>
<li>list view</li>
<li>amazing options in the admin panel &#8211; arrange table view of events, link to Google maps, etc.</li>
<li>events feed</li>
<li>fields for city, venue, start time, contact details</li>
<li>once you select a venue, the contact details appear automatically! Big time saver.</li>
<li>each event links to the details</li>
<li>user level management</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>no month calendar view</li>
<li>no recurring events</li>
<li>no way to search/sort by month, venue, city, date</li>
</ul>
<h1><a href="http://gigpress.com/docs">Gigpress by Derek Hogue<br />
</a></h1>
<p>Another plugin designed for bands touring but can be used for any events.</p>
<p><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/gigspressview.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/gigspressview-thumb.png" border="0" alt="Gigspressview" width="519" height="154" /></a></p>
<p><strong>Features</strong></p>
<ul>
<li>list view</li>
<li>user level management</li>
<li>events feed</li>
<li>fields for venue, venue website, address, country, etc.</li>
<li>connects to posts with a link that says &#8220;related post&#8221; [I think it should say "More details"]</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>no month calendar view</li>
<li>no recurring events</li>
<li><span style="text-decoration: line-through;">doesn&#8217;t connect to a post &#8211; all the info needs to be written in the table which isn&#8217;t good if you have a lot of text<br />
</span></li>
<li>no way to search/sort by month, venue, city, date</li>
</ul>
<h1><a href="http://wordpress.org/extend/plugins/wp-easy-php-calendar-admin/">Easy PHP Calendar Plugin</a></h1>
<p><a href="http://www.easyphpcalendar.com">EasyPHPCalendar</a> is a script you can buy for $20. To integrate it into the Wordpress admin, you can use the Wordpress plugin. This is by far the most comprehensive calendar you can use in conjunction with Wordpress. It has tons of features, template options, and display options. Just beware of the clunky setup which may take a few hours to do properly. Also, there are certain features which can&#8217;t  be modified because they&#8217;re encrypted by the Calendar developers. Luckily, the support forum on the site is pretty active.</p>
<p><a href="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp2.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp2-thumb.png" border="0" alt="easyphp2" width="316" height="194" /></a> <a href="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp3-thumb.png" border="0" alt="easyphp3" width="317" height="107" /></a> <a href="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp1.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://wordpressgarage.com/wp-content/uploads/2008/10/easyphp1-thumb.png" border="0" alt="easyphp1" width="244" height="162" /></a></p>
<p><strong>Features</strong></p>
<ul>
<li>mySQL database support</li>
<li>Flat-file database support &#8211; No mySQL server required!</li>
<li>Single events, recurring events and floating events plus multiple categories</li>
<li>Complete and easy event and setup administration</li>
<li>Mouse-over and pop-up event details</li>
<li>Customizable categories and multiple event administrators</li>
<li>Rich event descriptions including font sizes/colors and images</li>
<li>different templates for list view and month view</li>
<li>active support forum and RSS feed for latest entries in forum</li>
<li><a href="http://www.easyphpcalendar.com/details.php">See more details</a></li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>complex setup</li>
<li>weak search and filtering</li>
<li>no easy way to import a CSV of recurring events</li>
<li>no events feed</li>
<li>some encrypted code which may leave you helpless if you want to modify certain functionality</li>
</ul>
<p>[Update ]</p>
<h1><a href="http://wordpress.org/extend/plugins/wp-events/">WP-Events by Arnan de Gans<br />
</a></h1>
<h1><img class="alignnone size-full wp-image-451" title="upcoming-events" src="http://wordpressgarage.com/wp-content/uploads/2008/10/upcoming-events.png" alt="upcoming-events" width="252" height="159" /></h1>
<p>The plugin features a straightforward user interface in the Wordpress dashboard to add/edit and delete events and set some options. Events allows you to list Events on a seperate page or in the sidebar, or both. Here you can list Old (archived) events future events and if you want, events happening today. When you create or edit an event you can set it to be archived. So that it remains listed. Optionally non-archived events are automatically deleted one day (24 hours) after they expire. Many more options are available and Events is completely customizable to your theme in an easy and flexible manner.</p>
<p><strong>Features:</strong></p>
<ul>
<li>Widget for themes that support it</li>
<li>non-widget option: Code to put into templates</li>
<li>Separate page for events</li>
<li>Completely customizable layout</li>
<li>Multi language</li>
<li>Link events to pages/posts</li>
<li>Set a start and end time (duration) for events</li>
<li>Set locations for events</li>
<li>Show events in your sidebar</li>
<li>Archive events</li>
<li>Edit existing events</li>
<li>Auto remove old, non-archived events</li>
<li>Unlimited dateformats to show events dates</li>
<li>Options page</li>
<li>Set a date and time to the minute</li>
<li>Set a message to show before and another one to show after the event occurs</li>
<li>User level restriction</li>
<li>Management page</li>
<li>Set amount of events to show in the sidebar</li>
</ul>
<p><strong>Cons:</strong></p>
<p>Since the events in this plugin are separate from posts,  the integration with linking and feeds is not so great. Other than that, I really like all the options and customization available. Definitely worth trying out.<strong><br />
</strong></p>
<ul>
<li>No events feed &#8211; I wanted to offer my readers a way to get the events feed but because the events are entries rather than posts, I couldn&#8217;t figure out an easy way to do it.</li>
<li>Page/post relationship links &#8211; You can add a post and then create a link from the event to the post, but this seems like double the work and not so intuitive.. I guess I could link events to the main events page for more info, but then there is no direct event link to send your friends or refer back to it.</li>
<li>Date format &#8211; the date shows up as March 04, 2009 at 04:00pm and I couldn&#8217;t figure out a way to get rid of those initial 0&#8217;s. who needs &#8216;em?</li>
</ul>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fwordpress-calendar-plugins%2F&amp;title=Best+4+Wordpress+Calendar+plugins" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=QL7VvLUA"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=d9rnRYLo"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=d9rnRYLo" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=MOGSFxVH"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=MOGSFxVH" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/2jdqSvkIzWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/plugins/wordpress-calendar-plugins/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/plugins/wordpress-calendar-plugins/</feedburner:origLink></item>
		<item>
		<title>How to set up Wordpress on a Wampserver</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/1mIQH4wM2zA/</link>
		<comments>http://wordpressgarage.com/good-blogging-practice/how-to-set-up-wordpress-on-a-wampserver/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 13:10:57 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Good Blogging Practice]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Wamp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=346</guid>
		<description><![CDATA[Recently, someone asked me how to set up a local Wamp server on their computer so they can test Wordpress sites locally before uploading and editing online. MakeUseOf nicely explained what a Wamp server is and how to set it up. I wanted to expand their explanation to include setting up Wordpress.
What is this Wamp [...]]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Recently, someone asked me how to set up a local Wamp server on their computer so they can test Wordpress sites locally before uploading and editing online. <a href="http://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/">MakeUseOf</a> nicely explained what a Wamp server is and how to set it up. I wanted to expand their explanation to include setting up Wordpress.</p>
<h1><strong>What is this Wamp business?</strong></h1>
<p>According to <a href="http://www.makeuseof.com/tag/how-to-set-up-your-own-wampserver/">MakeUseOf</a>, WAMP stands for <strong>W</strong>indows <strong>A</strong>pache, <strong>M</strong>ySQL and <strong>P</strong>HP.</p>
<blockquote><p>A great majority of websites are run by a trio of services &#8211; <a href="http://httpd.apache.org/">Apache</a>, <a href="http://www.mysql.com/">MySQL</a> and <a href="http://www.php.net/">PHP</a>. Apache is the web server, which handles browser requests and sends the information across the internet to your browser. PHP is the programming language that many sites are written in &#8211; this creates dynamic content which in turn is sent to Apache, which sends the data to your browser. And finally, MySQL is the database which stores the information for programs. PHP is used to access this database.</p></blockquote>
<h1><strong>How to Set up a Wamp Server<br />
</strong></h1>
<p><strong>Step 1</strong></p>
<p>Download the <a href="http://www.wampserver.com/en/download.php">WampServer</a>.</p>
<p><strong>Step 2</strong></p>
<p>Run the installer, using the default options provided.</p>
<p><strong>Step 3</strong></p>
<p>Double click the Wamp icon on your desktop .<img class="alignnone size-full wp-image-347" title="wampicon" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wampicon.gif" alt="" width="72" height="63" /></p>
<p>On your taskbar, near the time in the bottom right corner of your desktop, left click on the <img class="alignnone size-full wp-image-348" title="wamp" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wamp.gif" alt="" width="19" height="21" /> semicircle button and Click &#8220;Put online&#8221;.</p>
<h2>How to set up Wordpress on your Wamp</h2>
<p><strong>Step 1<br />
</strong></p>
<p>Download <a href="http://wordpress.org/download/">Wordpress</a>. Extract the files.</p>
<p>Left click on the <img class="alignnone size-full wp-image-348" title="wamp" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wamp.gif" alt="" width="19" height="21" /> semicircle on your taskbar.</p>
<p>Open up the www directory.</p>
<p><img class="alignnone size-full wp-image-350" title="wamp21" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wamp21.gif" alt="" width="176" height="262" /></p>
<p>Drag the Wordpress folder into the www directory.</p>
<p><strong>Step 2<br />
</strong></p>
<p>1.  Open PHPmyadmin from your wamp menu</p>
<p><img class="alignnone size-full wp-image-351" title="Wamp php my admin" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wamphp.gif" alt="" width="184" height="266" /></p>
<p>2. Create a new Database (&#8217;<tt>wordpress</tt>&#8216; or &#8216;<tt>blog</tt>&#8216; are good). Leave Collation. Click Create.</p>
<p><img class="alignnone size-full wp-image-352" title="phpmyadmin new database" src="http://wordpressgarage.com/wp-content/uploads/2008/10/phpmyadminnewdb.gif" alt="" width="428" height="46" /></p>
<p>3.  Click the <strong>Home</strong> icon in the upper left to return to the main page, then click <strong>Privileges</strong>. If a user relating to WordPress does not already exist in the list of users, create one:</p>
<ol>
<li> Click <strong>Add a new User</strong>.</li>
<li> Chose a username for WordPress (&#8217;admin&#8217; is good) and enter it in the <strong>User name</strong> field. (Be sure <strong>Use text field:</strong> is selected from the dropdown.)</li>
<li>For <strong>Host</strong>, select <strong>Local </strong>and type in <strong>localhost</strong></li>
<li> Choose a difficult-to-guess password and enter it in the <strong>Password</strong> field. (Be sure <strong>Use text field:</strong> is selected from the dropdown.) Re-enter the password in the <strong>Re-type</strong> field.</li>
<li> Write down the username and password you chose.</li>
<li> Leave all options under <strong>Global privileges</strong> at their defaults.</li>
<li> Click <strong>Go</strong>.</li>
</ol>
<p>4. Return to the <strong>Privileges</strong> screen and click the <strong>Check privileges</strong> icon on the user you&#8217;ve just created for WordPress. In the <strong>Database-specific privileges</strong> section, select the database you&#8217;ve just created for WordPress under the <strong>Add privileges to the following database</strong> dropdown. The page will refresh with privileges for that database. Click <strong>Check All</strong> to select all privileges, and click <strong>Go</strong>.</p>
<p>5. On the resulting page, make note of the host name listed after <strong>Server:</strong> at the top of the page. (This will usually be <strong>localhost</strong>.)</p>
<p>6. Returning to where you extracted the WordPress package, rename the file <tt>wp-config-sample.php</tt> to <tt>wp-config.php</tt>.</p>
<p>7. Open the renamed <tt>wp-config.php</tt> file in your favorite <a title="Glossary" href="http://codex.wordpress.org/Glossary#Text_editor">text editor</a>. Here&#8217;s a screenshot of how the wp-config.php is set up. <img class="alignnone size-full wp-image-353" title="wpconfig" src="http://wordpressgarage.com/wp-content/uploads/2008/10/wpconfig.gif" alt="" width="500" height="157" /></p>
<p>8. Fill in the following information</p>
<blockquote><p><strong>DB_NAME</strong><br />
The name of the database you created for WordPress. (ex. Wordpress)<br />
<strong>DB_USER</strong><br />
The username you created for WordPress (ex. admin)<br />
<strong>DB_PASSWORD</strong><br />
The password you chose for the WordPress username.<br />
<strong>DB_HOST</strong><br />
The hostname you determined  (<tt>usually localhost</tt>)</p></blockquote>
<p>9. Save the file.</p>
<p>10.  Run the install scrip by copying and pasting this URL into your browser <tt>http://localhost/wordpress/wp-admin/install.php<br />
</tt></p>
<p><strong>Step 3<br />
</strong></p>
<p>Hooray! Hopefully all went according to plan.</p>
<p>Treat yourself to a nice cold beer.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwordpressgarage.com%2Fgood-blogging-practice%2Fhow-to-set-up-wordpress-on-a-wampserver%2F&amp;title=How+to+set+up+Wordpress+on+a+Wampserver" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/WordpressGarage?a=Ett93qGi"><img src="http://feeds.feedburner.com/~f/WordpressGarage?d=41" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=RXOwD11R"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=RXOwD11R" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/WordpressGarage?a=6zKugPEv"><img src="http://feeds.feedburner.com/~f/WordpressGarage?i=6zKugPEv" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/1mIQH4wM2zA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/good-blogging-practice/how-to-set-up-wordpress-on-a-wampserver/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/good-blogging-practice/how-to-set-up-wordpress-on-a-wampserver/</feedburner:origLink></item>
	</channel>
</rss>
