<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WP Garage &#187; directory</title>
	<atom:link href="http://wpgarage.com/tag/directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Thu, 08 Jul 2010 15:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to create a Simple Directory in Wordpress using Grandparent, Parent, and Child Pages</title>
		<link>http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/</link>
		<comments>http://wpgarage.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>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(&#8220;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://wpgarage.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>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;desc=I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;t=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;link=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;body=Link: http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;srcUrl=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;srcTitle=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;snippet=I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;summary=I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&amp;selection=I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/&amp;title=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/+&quot;How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fcode-snippets%2Fhow-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages%2F&amp;t=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Child+Pages" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+create+a+Simple+Directory+in+Wordpress+using+Grandparent%2C+Parent%2C+and+Chi%5B..%5D+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20create%20a%20Simple%20Directory%20in%20Wordpress%20using%20Grandparent%2C%20Parent%2C%20and%20Child%20Pages%22&amp;body=Link: http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20wanted%20to%20create%20a%20simple%20directory%20of%20non-profit%20organizations.%20To%20do%20so%2C%C2%A0%20%20I%20wanted%20to%20use%20pages%20for%20the%20directory%2C%20rather%20than%20posts%20so%20that%20I%20could%20separate%20the%20static%20directory%20listings%20from%20the%20dynamic%20blog%20posts.%20I%20didn%27t%20want%20to%20have%20to%20exclude%20tons%20of%20categories%20from%20feedburner%20and%20the%20m" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/code-snippets/how-to-create-a-simple-directory-in-wordpress-using-grandparent-parent-and-child-pages/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugins Directory Search no longer &#8220;sucks&#8221;</title>
		<link>http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/</link>
		<comments>http://wpgarage.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>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>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;desc=I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;t=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;link=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;body=Link: http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;srcUrl=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;srcTitle=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;snippet=I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;summary=I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&amp;selection=I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/&amp;title=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/+&quot;Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fnews-views%2Fwordpress-plugins-directory-search-no-longer-sucks%2F&amp;t=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+Plugins+Directory+Search+no+longer+%22sucks%22+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Wordpress%20Plugins%20Directory%20Search%20no%20longer%20%22sucks%22%22&amp;body=Link: http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20received%20an%20email%20from%20Matt%20Mullenweg%2C%20founder%20of%20Wordpress%2C%20letting%20me%20know%20that%20the%20%22Plugin%20search%20no%20longer%20sucks%22.%C2%A0%20I%20was%20so%20excited%20that%20I%20didn%27t%20even%20notice%20the%20typo%20he%20later%20reported%20on%20Twitter.%0D%0A%0D%0AAccording%20to%20the%20official%20Wordpress%20site%2C%20Wordpress%20Plugins%20directory%20search%20is%20no%20long" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
