<?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>Wed, 18 Nov 2009 14:13:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</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>The importance of the wp_footer(); plugin API hook</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/p0L0e3xuCok/</link>
		<comments>http://wordpressgarage.com/plugins/the-importance-of-the-wp_footer-plugin-api-hook/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:03:39 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[API hooks]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=546</guid>
		<description><![CDATA[<p class="dropcap-first">About a week ago I wrote a post about a new WordPress plugin released by Semantinet called Headup. When Semantinet first asked me to install the plugin, it actually didn’t work. They looked into it and realized that the reason for this is that WordPress Garage doesn’t have the ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">About a week ago I wrote a post about a <a title="Headup WordPress Plugin" href="http://wordpressgarage.com/plugins/semantic-wordpress-plugin/">new WordPress plugin released by Semantinet called Headup</a>. When Semantinet first asked me to install the plugin, it actually didn’t work. They looked into it and realized that the reason for this is that WordPress Garage doesn’t have the wp_footer hook in the footer. I didn’t get too excited about that, and told them there are probably a lot of blogs out there that don’t have this hook, and that they should make sure their plugin is compatible with blogs that don’t have the hook so that it will work in most cases.</p>
<p>They took my advice and modified the plugin, and it worked.</p>
<p>Today, one of our clients contacted us saying that they are trying to install a certain  WordPress analytics plugin, and the code that the plugin produces appears in the footer when they switch to the default theme, but it doesn’t work with the theme we created for them.</p>
<p>I realized that it must be the same missing hook problem, and we looked into it and identified the following hook which indeed was missing from their theme:</p>
<p>&lt;?php wp_footer(); ?&gt;</p>
<p>We added it to their footer.php file, and the plugin started to work!</p>
<p>So take note theme developers for the WordPress community and for private clients (I am including myself in this): it is important to run through a checklist of code snippets that your WordPress themes should contain so that users and clients can enjoy smooth running WordPress sites.</p>
<p>&lt;?php wp_footer(); ?&gt; is just one of them. The WordPress Codex has a very handy page called Theme Development that goes through functionality and code that WordPress themes should have. Here are some important sections:</p>
<p><a href="http://codex.wordpress.org/Theme_Development#Theme_Template_Files_List">Theme Template Files List</a> – list of all the possible theme template files.</p>
<p><a href="http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks">Plugin API Hooks</a> – list of all the pieces of code needed for plugins that use those hooks to work. <a href="http://weblogtoolscollection.com/news/topic/wp_head-wp_footer-038-plugins-that-suddenly-dont-work">Weblog Tools Collection reported</a> that another API hook that’s regularly forgotten in themes is wp_head();.</p>
<h2>The best place for wp_footer();</h2>
<p>WP Designer (when he was still writing his amazing blog) wrote about this hook and <a href="http://www.wpdesigner.com/2007/05/30/where-exactly-should-you-place-wp_footer/">discusses the ideal placement for it within your theme files</a>. He says that often plugins will break your theme if they use this hook, so it’s best to put it in a style-less div container “that your layout doesn’t depend on. Otherwise, you might end up with an incomplete layout while waiting for a slow loading plugin.”</p>
<p>I’m a bit embarrassed that I wasn’t aware of this apparently basic yet important WordPress theme issue. But I hope that by admitting my lack of knowledge I can help some of you solve plugin problems or theme problems.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook', '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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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%2Fthe-importance-of-the-wp_footer-plugin-api-hook%2F&amp;title=The+importance+of+the+wp_footer%28%29%3B+plugin+API+hook" 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=p0L0e3xuCok:hHDKtTyv1f4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=p0L0e3xuCok:hHDKtTyv1f4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=p0L0e3xuCok:hHDKtTyv1f4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=p0L0e3xuCok:hHDKtTyv1f4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=p0L0e3xuCok:hHDKtTyv1f4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/p0L0e3xuCok" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/plugins/the-importance-of-the-wp_footer-plugin-api-hook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/plugins/the-importance-of-the-wp_footer-plugin-api-hook/</feedburner:origLink></item>
		<item>
		<title>Headup Semantic WordPress plugin automatically adds rich content to your blog</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/WtbjX4Z2Qd0/</link>
		<comments>http://wordpressgarage.com/plugins/semantic-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:12:27 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=532</guid>
		<description><![CDATA[<p class="dropcap-first">A new WordPress plugin called Headup was released about a week ago by SemantiNet, a startup dedicated to  developing Semantic Web technologies and platforms. The plugin works on top of  the company’s existing technology, and automatically adds rich content to terms  that appear in your blog ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">A new <a href="http://wordpress.org/extend/plugins/">WordPress plugin</a> called <a href="http://wordpress.org/extend/plugins/headup-bloggers-widget/">Headup</a> was released about a week ago by <a href="http://www.semantinet.com/">SemantiNet</a>, a startup dedicated to  developing Semantic Web technologies and platforms. The plugin works on top of  the company’s existing technology, and automatically adds rich content to terms  that appear in your blog posts.</p>
<p>I installed it here on WordPress Garage so you can see it in action, but  basically the way it works is key terms get a dotted orange underline (which  helps differentiate them from your regular links), and when you mouse-over those  terms a pop-up window appears with information tabs. These tabs display the  following content:</p>
<ol>
<li>A short summary about the key-term (Wikipedia style information)</li>
<li>Related News, Articles &amp; Posts</li>
<li>Related images from Flickr, Panoramio, Picasa, etc.</li>
<li>Related Tweets</li>
<li>Related Videos from Youtube</li>
<li>Related Products from Amazon</li>
<li>How your readers Facebook friends relate to the key term (requires readers  to approve Facebook connection)</li>
</ol>
<p>For geographic locations the pop-up will display a Map tab, and for films a  Trailer tab will be displayed.</p>
<p>The field of semantic technologies is so new that Headup is only one of 9  WordPress plugins that have “semantic web” as a tag in the plugin directory.</p>
<h4>How to install the Headup plugin</h4>
<ol>
<li>Go to “Add New” in the WordPress plugin menu.</li>
<li>Enter “headup” as the search term to find the plugin in the directory. There  will only be one result for this term.</li>
<li>Click the “Install” button on the far right, and then activate the plugin.</li>
<li>You can configure some settings for the plugin under Settings &gt; Headup  for WordPress. There you can choose a maximum number of annotations to display  on a page, how many times the same term should be annotated, and whether  hyperlinks should be annotated as well.</li>
</ol>
<p>It will take about an hour before the key terms on your site start displaying  the dotted orange highlights. Here&#8217;s a short video explaining how to install the plugin:</p>
<p><a href="http://wordpressgarage.com/plugins/semantic-wordpress-plugin/"><em>Click here to view the embedded video.</em></a></p>
<p>Here&#8217;s another video overview of the <a href="http://www.youtube.com/watch?v=acvYZ9Bolr4">Headup Blog Widget and WordPress plugin</a>.</p>
<h4>Why would you use this plugin?</h4>
<p>The creators of the plugin say that by offering this type of content, you can  “reduce bounce rates and increase your readers&#8217; engagement.” Since I tend to  judge the world by my own preferences, I was a bit skeptical as to whether such  a feature could really achieve those goals since I prefer to find my own info  rather than have it dictated to me. Luckily, my pal <a href="http://twitter.com/pop_art">Mike</a> works at SemantiNet so I decided to  ask him a few questions about this plugin, their technology, the semantic web in  general, and whether he agrees that Cookies and Cream is Ben &amp; Jerry’s best  ice cream flavor.</p>
<p><strong>WPG:</strong> Mike, tell me a bit about SemantiNet and what you do there.</p>
<p><strong>Mike: </strong>Whereas much of the activity related to semantic web is still  very much academic and theoretical, SemantiNet’s products are among the few  examples of practical applications of next generation web technology anyone can  enjoy today.</p>
<p>What our technology does is identify key-terms in publications &amp; blogs  and then provide relevant and personalized related content in real-time. For  example, say you’ve written a post about Barack Obama recently being elected in  Oslo to be honored with the Nobel Peace Prize. What we’ll do is automatically  identify the term “Barack Obama” as being president of the US, and suggest  content related to him, and identify the term “Oslo” as being a city, and  suggest content related to it too.</p>
<p>The big deal here is that the technology realizes that Oslo, the city, has  different attributes from Obama, the person, so it will offer different types of  information for each. For example, Oslo’s Headup results would include a city  map, while Obama’s would not.</p>
<p>As for me, I’m a Project Manager in the company and am responsible for  managing the company’s site and blog widget.</p>
<p><strong>WPG:</strong> Call me an ignoramus Mike (don’t look so happy about the  opportunity), but I still don’t quite get what the semantic web is about. Please  explain and make me feel more intelligent.</p>
<p><strong>Mike: </strong>What makes companies like SemantiNet exciting is that their  understanding of online content goes beyond the basic key-word matching we’re  familiar with from current search technologies, and enters the realm of true  object identification. This is a fancy way of saying that whereas today, if you  search for “Apple” you’ll get results related to the company and the fruit  indiscriminately, the vision for Semantic Web is that the same search will  deliver results that relate not only to “Apple” but also to “Steve Jobs,”  “iPhones,” ”iPods,” etc. even if the word “Apple” isn’t explicitly mentioned in  the text results.</p>
<p>For more information about the Semantic Web I recommend seeing Sir Tim  Berners Lee’s excellent <a href="http://www.ted.com/talks/lang/eng/tim_berners_lee_on_the_next_web.html">TED  talk</a> on the subject.</p>
<p><strong>WPG: </strong>How can bloggers and publishers offer this type of rich  information on their own sites?</p>
<p><strong>Mike:</strong> To date we have three products people can use to get a better  feeling for what this does: the <a href="http://headup.com/">Headup Firefox  addon</a>, the Headup <a href="http://semantinet.com/publishers">publisher and  blogger widget</a>, and most recently, the <a href="http://wordpress.org/extend/plugins/headup-bloggers-widget/">Headup  WordPress plugin</a>.</p>
<p><strong>WPG:</strong> Why should bloggers install the Headup plugin?</p>
<p><strong>Mike: </strong>Bloggers who install our widget will gain longer engagement  times and reduced bounce rates. Besides these advantages the widget has the  ability, via the “Friends” tab, to enable readers to personalize their reading  experience and see how the key terms you blogged about relate to their circle of  friends. To the best of my knowledge no other widget out there has this  capability.</p>
<p>A significant benefit is the fact that everything I’ve described so far is  entirely automated. All you as a blogger need to do is a single one time  installation of the plugin and within about an hour your entire archive will be  covered. This level of automation is again, to the best of my knowledge,  unprecedented.</p>
<p><strong>WPG: </strong>How does the widget promote engagement time and reduce bounce  rate?</p>
<p><strong>Mike: </strong>The widget reduces your reader’s incentive to browse away by  letting them access all the related content they need right on top of your  pages. Why go somewhere else when you have everything you need right where you  are?</p>
<p>In your <a href="../news-views/interview-with-yeddas-head-of-community-marketing-about-new-feedflare-modules-for-bloggers/http:/yedda.com/">interview  with Lior Haner from Yedda</a> you asked, quite rightly, how Yedda was solving  bloggers’ need to have conversations take place in their blog. We don’t deal in  conversations, however as far as complementary and related content is concerned,  we’ve pretty much guaranteed bloggers that their audience won’t have to open  another tab or browse away to get the little extra that was missing.</p>
<p><strong>WPG: </strong>Can bloggers contact you with questions?</p>
<p><strong>Mike: </strong>For sure! I’m personally available for any support needed both  on twitter <a href="http://twitter.com/headup">@headup</a> and via email –  miked[at]semantinet[dot]com. Don’t be Shy!</p>
<p><strong>WPG: </strong>Anything else you’d care to add?</p>
<p><strong>Mike: </strong>I agree that Cookies and Cream is Ben &amp; Jerry’s best flavor.</p>
<p><strong>WPG: </strong>Of course you do! That’s why we’re pals.</p>
<p>So there you have it. I’d love it if you, our readers, would check out this new  feature here and tell me what you think: is it useful, annoying, or somewhere in  between?</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog', '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%2Fsemantic-wordpress-plugin%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%2Fsemantic-wordpress-plugin%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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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%2Fsemantic-wordpress-plugin%2F&amp;title=Headup+Semantic+WordPress+plugin+automatically+adds+rich+content+to+your+blog" 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=WtbjX4Z2Qd0:ays9bmGN8dI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=WtbjX4Z2Qd0:ays9bmGN8dI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=WtbjX4Z2Qd0:ays9bmGN8dI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=WtbjX4Z2Qd0:ays9bmGN8dI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=WtbjX4Z2Qd0:ays9bmGN8dI:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/WtbjX4Z2Qd0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/plugins/semantic-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/plugins/semantic-wordpress-plugin/</feedburner:origLink></item>
		<item>
		<title>How to Change Permalink Structure in WordPress without Duplicate Content</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/VV8G6wkiRGw/</link>
		<comments>http://wordpressgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 14:19:00 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[Google News]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/</guid>
		<description><![CDATA[<p class="dropcap-first">Recently we had a client who wanted to change their Permalink structure from</p>
<p>Old Permalink structure: /%author%/%category%/%postname%/</p>
<p>to:</p>
<p>New Permalink structure: /%author%/%category%/%postname%/%post_id%/</p>
<p>so that they would qualify for Google News. Apparently you need at least 3 digits in your URL in order to qualify for Google News.</p>
<p>I wanted to simply change the Permalink ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Recently we had a client who wanted to change their Permalink structure from</p>
<p><strong>Old Permalink structure:</strong> /%author%/%category%/%postname%/</p>
<p>to:</p>
<p><strong>New Permalink structure:</strong> /%author%/%category%/%postname%/%post_id%/</p>
<p>so that they would qualify for <a href="http://www.google.com/support/news_pub/bin/topic.py?topic=11666">Google News</a>. Apparently you need at least 3 digits in your URL in order to qualify for Google News.</p>
<p>I wanted to simply change the Permalink structure by going to Settings&gt;Permalinks in WordPress. However, the problem is that Google sees 2 URLs for the same post which could cause Google to penalize you for duplicate content:</p>
<p>Google would see both the old and new Permalink structure for the same content:</p>
<p>For example, Google would see:</p>
<p>(old) <a href="http://example.com/Rebecca/News/MyPost/">http://example.com/Rebecca/News/MyPost/</a></p>
<p>and</p>
<p>(new) <a href="http://example.com/Rebecca/News/MyPost/222">http://example.com/Rebecca/News/MyPost/222</a></p>
<p>So we need to make sure the old Permalink structure has a 301 redirect to the new Permalink structure.</p>
<p>Thankfully, after trying many plugins, we finally found and successfully implemented this plugin: <a href="http://scott.yang.id.au/code/permalink-redirect/">Permalink Redirect WordPress Plugin</a></p>
<p>The directions on the site are very old and quite confusing.</p>
<p>Here’s how to use <a href="http://scott.yang.id.au/code/permalink-redirect/">Permalink Redirect WordPress Plugin</a></p>
<ol>
<li>Download, Install and activate the plugin</li>
<li>Go to Settings&gt;Permalinks and copy down your old permalink structure</li>
<li>While you’re in Settings&gt;Permalinks, change the Permalink structure to your new permalink structure</li>
<li>Go to Settings&gt;Permalink Redirect and where it says “Old Permalink Structures”, paste in your old permalink structure</li>
</ol>
<p>That’s it.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fplugins%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content', '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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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=VV8G6wkiRGw:KBZ23Y8BNA4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=VV8G6wkiRGw:KBZ23Y8BNA4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=VV8G6wkiRGw:KBZ23Y8BNA4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=VV8G6wkiRGw:KBZ23Y8BNA4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=VV8G6wkiRGw:KBZ23Y8BNA4:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/VV8G6wkiRGw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/</feedburner:origLink></item>
		<item>
		<title>How to list the 4 latest posts with only one post per author in WordPress</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/YnudkAYmhpA/</link>
		<comments>http://wordpressgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:05:00 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[recent posts]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/</guid>
		<description><![CDATA[<p class="dropcap-first">Recently, one site we were working on needed a sidebar that would show the 4 most recent posts on the site. But here’s the catch: they wanted only one post per author. And, each author had to have the role of “author” as opposed to contributor or admin.</p>
<p>The site ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Recently, one site we were working on needed a sidebar that would show the 4 most recent posts on the site. But here’s the catch: they wanted only one post per author. And, each author had to have the role of “author” as opposed to contributor or admin.</p>
<p>The site in question is still in Beta, so I can’t give out the link yet. But here’s a snapshot to give you a better idea of what we were going for.</p>
<p><a href="http://wordpressgarage.com/wp-content/uploads/2009/09/wpgblogs.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="wpgblogs" src="http://wordpressgarage.com/wp-content/uploads/2009/09/wpgblogs_thumb.jpg" border="0" alt="wpgblogs" width="192" height="244" /></a></p>
<p>We also used the plugin <a href="http://wordpress.org/extend/plugins/user-photo/">User Photo</a> to show each author’s thumbnail, which I have come to love and recommend.</p>
<p>Thanks to <a href="http://www.marksw.com/blog/wordpress/">Mark Kaplun</a> for this great solution:</p>
<p>Open your Sidebar.php file and add the following:</p>
<p>Please note: this code uses the plugin Limit Posts to create excerpts. But you can substitute that snippet with any type of excerpt code.</p>
<p>&lt;?php $authors = get_users_of_blog(); ?&gt;</p>
<p>&lt;?php<br />
$latest_posts = array();<br />
foreach ( $authors as $author ) {<br />
$user = new WP_User( $author-&gt;ID );<br />
if ($user-&gt;has_cap(&#8217;level_7&#8242;))<br />
continue;<br />
$ps = get_posts(&#8217;numberposts=1&amp;post_type=post&amp;author=&#8217; . $author-&gt;ID . &#8216;&amp;cat=-9,-3&#8242;);<br />
foreach ($ps as $p) {<br />
$latest_posts[$p-&gt;post_date] = $p;<br />
}<br />
}<br />
krsort($latest_posts);<br />
?&gt;<br />
&lt;?php //query_posts(&#8217;author=&#8217; . $author-&gt;ID . &#8216;&amp;showposts=1&amp;cat=-9,-3&#8242;); ?&gt;<br />
&lt;?php<br />
$counter =0;<br />
foreach ($latest_posts as $post) {<br />
$counter++;<br />
if ($counter &gt; 4)<br />
break;<br />
setup_postdata($post);<br />
?&gt;</p>
<p>&lt;?php // while (have_posts()) : the_post(); ?&gt;</p>
<p>&lt;li&gt;<br />
&lt;?php userphoto_the_author_thumbnail(); ?&gt;<br />
&lt;span class=&#8221;blogauthor&#8221;&gt; &lt;?php the_author_posts_link(); ?&gt; &lt;/span&gt;<br />
&lt;div class=&#8221;blog&#8221;&gt;    &lt;a title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221; href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/div&gt;<br />
&lt;br /&gt;</p>
<p>&lt;?php  the_content_limit(&#8217;55,read more&#8217;); ?&gt; &lt;strong&gt;&lt;a title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221; href=&#8221;&lt;?php the_permalink() ?&gt;&#8221;&gt;Read more&lt;/a&gt;   &lt;/strong&gt;<br />
&lt;/li&gt;<br />
&lt;?php } ?&gt;</p>
<p>&lt;?php // }; ?&gt;</p>
<p>The End. Yay code!</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%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%2Flist-4-latest-posts-with-only-one-post-per-author%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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+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/~ff/WordpressGarage?a=YnudkAYmhpA:8vqsbNVwkfM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=YnudkAYmhpA:8vqsbNVwkfM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=YnudkAYmhpA:8vqsbNVwkfM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=YnudkAYmhpA:8vqsbNVwkfM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=YnudkAYmhpA:8vqsbNVwkfM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/YnudkAYmhpA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/</feedburner:origLink></item>
		<item>
		<title>How to Customize Multiple Search Result Pages in Wordpress</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/lEMnsAB1yKU/</link>
		<comments>http://wordpressgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:26:02 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=498</guid>
		<description><![CDATA[<p class="dropcap-first">In the previous post, we discussed how to hack the search function in Wordpress to have an additional search form that would search  subcategories. Now that you have 2 or more search forms on your site, you might need to customize the search results. Thanks to this solution, I ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">In the previous post, we discussed how to <a href="http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/">hack the search function</a> in Wordpress to have an additional search form that would search  subcategories. Now that you have 2 or more search forms on your site, you might need to customize the search results. Thanks to <a href="http://www.rob-barrett.com/post/multiple-search-results-pages-within-one-wordpress-site">this solution</a>, I learned how to create multiple search result pages.</p>
<p>Let&#8217;s say we have 2 search forms on our site:</p>
<ol>
<li>General Site-Wide Search</li>
<li>Recipe Search &#8211; searches subcategories of the Recipe Category</li>
</ol>
<p>The first thing we need to do is tweak the search.php template to use it as a filter that will recognize if a search is coming from the Site-Wide search form or the Recipe Search form.</p>
<p><strong>1. Open Search.php</strong> and delete everything.  Add the following code:</p>
<blockquote><p>&lt;?php<br />
/* Template Name: Search Results */<br />
$search_refer = $_GET["site_section"];<br />
if ($search_refer == &#8216;recipe&#8217;) { load_template(TEMPLATEPATH . &#8216;/recipe-search.php&#8217;); }<br />
elseif ($search_refer == &#8217;site-search&#8217;) { load_template(TEMPLATEPATH . &#8216;/site-search.php&#8217;); }; ?&gt;</p></blockquote>
<p><strong>2. Open Header.php</strong> or wherever the General Site-Wide Search Form is located and add this line:</p>
<blockquote><p>&lt;input type=&#8221;hidden&#8221; name=&#8221;site_section&#8221; value=&#8221;site-search&#8221; /&gt;</p></blockquote>
<p><strong>The Site-Wide Search form will look something like this:</strong></p>
<blockquote><p>&lt;form method=&#8221;get&#8221; id=&#8221;searchform&#8221; action=&#8221;&lt;?php bloginfo(&#8217;home&#8217;); ?&gt;/&#8221;&gt;<br />
&lt;div id=&#8221;search&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221; &#8221; onclick=&#8221;this.value=&#8221;;&#8221; name=&#8221;s&#8221; id=&#8221;s&#8221; /&gt;<strong><br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;site_section&#8221; value=&#8221;site-search&#8221; /&gt;</strong><br />
&lt;input name=&#8221;" type=&#8221;image&#8221; src=&#8221;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/styles/&lt;?php echo &#8220;$style_path&#8221;; ?&gt;/search.gif&#8221; value=&#8221;Go&#8221; /&gt;<br />
&lt;/div&gt;&lt;!&#8211;/search &#8211;&gt;<br />
&lt;/form&gt;</p></blockquote>
<p><strong>3. </strong><strong>Open Recipes.php</strong> or wherever your second search is and insert this line:</p>
<blockquote><p><strong>&lt;input type=&#8221;hidden&#8221; name=&#8221;site_section&#8221; value=&#8221;recipe&#8221; /&gt; </strong></p></blockquote>
<p>You can change the value &#8220;recipe&#8221; to whatever suits your needs. Just make sure it matches the value in search.php.</p>
<p><strong>The Recipe Search form for your second search</strong> <strong>will look something like this</strong>. In my case, this second search is meant to search the subcategories of the Recipe category.  See my previous post to learn about<a href="http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/"> hacking the search function to search subcategories.</a></p>
<blockquote><p>&lt;form method=&#8221;get&#8221; id=&#8221;rsearchform&#8221; action=&#8221;&lt;?php bloginfo(&#8217;home&#8217;); ?&gt;/&#8221;&gt;<br />
&lt;div id=&#8221;rsearch&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221;Recipe Search&#8230; &#8221; onclick=&#8221;this.value=&#8221;;&#8221; name=&#8221;s&#8221; id=&#8221;rs&#8221; /&gt;<br />
&lt;?php $categories = get_categories(&#8217;child_of=11&#8242;);<br />
$catlist = &#8221;;<br />
foreach ($categories as $cat) {<br />
$catlist.= $cat-&gt;cat_ID.&#8217;,';<br />
}<br />
$catlist.&#8217;11&#8242;;<br />
?&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;cat&#8221; value=&#8221;&lt;?php echo &#8220;$catlist&#8221;?&gt;&#8221; /&gt;<br />
<strong>&lt;input type=&#8221;hidden&#8221; name=&#8221;site_section&#8221; value=&#8221;recipe&#8221; /&gt; </strong><br />
&lt;input name=&#8221;" type=&#8221;image&#8221; src=&#8221;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/styles/&lt;?php echo &#8220;$style_path&#8221;; ?&gt;/search.gif&#8221; value=&#8221;Go&#8221; /&gt;<br />
&lt;/div&gt;&lt;!&#8211;/search &#8211;&gt;<br />
&lt;/form&gt;</p></blockquote>
<p><strong>4. Customize the Search Results Templates</strong></p>
<p>If you recall, in step 1, we added the following to the search.php page.</p>
<blockquote><p>if ($search_refer == &#8216;recipe&#8217;) { load_template(TEMPLATEPATH . &#8216;/recipe-search.php&#8217;); }<br />
elseif ($search_refer == &#8217;site-search&#8217;) { load_template(TEMPLATEPATH . &#8216;/site-search.php&#8217;); }; ?&gt;</p></blockquote>
<p>Create recipe-search.php (or whatever you named this template) and customize the layout of the results page to your liking. You can use index.php to start with and customize from there.</p>
<p>Create site-search.php (or whatever you named this template) and customize the layout of the results page to your liking. You can use index.php to start with and customize from there.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-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%2Fhow-to-customize-multiple-search-result-pages-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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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%2Fhow-to-customize-multiple-search-result-pages-in-wordpress%2F&amp;title=How+to+Customize+Multiple+Search+Result+Pages+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/~ff/WordpressGarage?a=lEMnsAB1yKU:P5j7-syigfg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=lEMnsAB1yKU:P5j7-syigfg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=lEMnsAB1yKU:P5j7-syigfg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=lEMnsAB1yKU:P5j7-syigfg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=lEMnsAB1yKU:P5j7-syigfg:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/lEMnsAB1yKU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>New WordPress mailing list for asking and answering WordPress development questions</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/EgTS3RwHNfA/</link>
		<comments>http://wordpressgarage.com/tips/new-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 11:40:32 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/?p=511</guid>
		<description><![CDATA[<p class="dropcap-first">Where can you go if you have questions about developing and managing a WordPress site? Well, we all know about the WordPress Forums, which can be a useful resource for getting experts and WordPress staff to answer your questions.</p>
<p>However, not everybody is a fan of the forum format &#8211; ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Where can you go if you have questions about developing and managing a WordPress site? Well, we all know about the <a title="WordPress Forums" href="http://wordpress.org/support/">WordPress Forums</a>, which can be a useful resource for getting experts and WordPress staff to answer your questions.</p>
<p>However, not everybody is a fan of the forum format &#8211; including me. You have to remember to check back (yes, I know there are RSS feeds, but I don’t even go into my RSS reader on a daily basis anymore), and only people who keep an eye on new topics see your questions.</p>
<p>My experience is that mailing lists work great since everybody on the list sees the emails, and good conversations can ensue. Also, users are encouraged to answer questions because it gives them the opportunity to showcase their expertise.</p>
<p>Apparently, there are quite a lot of people who prefer mailing lists, and over the last year or so the <a title="WP-Pro mailing list" href="http://lists.automattic.com/mailman/listinfo/wp-pro">WP-Pro mailing list</a> has been getting quite a lot of posts about how to do certain things with WordPress. That would be great if the purpose of the list was for community support – but it’s not! The WP-Pro list is for people who are searching for WordPress service providers to work with, i.e. if you want to pay someone to fix/build/advise your WordPress project, that’s the place to go. If you want to know what the best WordPress SEO plugin is…well, the only place to turn to was the forum.</p>
<h2><a href="http://tech.groups.yahoo.com/group/wpgarage/"><span style="color: #000000;"><span style="text-decoration: none;">WP Garage Mailing List</span></span></a> – An Online/Email WordPress Community</h2>
<p>Not any more! I have set up <a title="WP Garage mailing list" href="http://tech.groups.yahoo.com/group/wpgarage/">a mailing list/email group called WP Garage</a> (well, I couldn’t think of another name!), for just these types of questions – if you are looking for plugins, code hacks, tips or just plain ol’ WordPress advice, this new list is for you! The goal is to provide an open and accepting place for WordPress users of all levels to ask and answer WordPress related questions. In the beginning, I will be moderating the posts to make sure no garbage gets through, but if I see that things are pretty clean I’ll ease up on the moderation.</p>
<p>So please come join us, either by <a title="Join the new WP Garage mailing list" href="http://groups.yahoo.com/group/wpgarage/join">clicking on this link</a> or by entering your email address in the field below:</p>
<p><strong>Subscribe to WP Garage Mailing List</strong></p>
<form style="padding-bottom: 2px; padding-left: 4px; width: 254px; padding-right: 4px; padding-top: 2px;" action="http://groups.yahoo.com/subscribe/wpgarage" method="get">
<input style="vertical-align: top" name="user" />
<input type="submit" /> </form>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions', '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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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%2Ftips%2Fnew-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions%2F&amp;title=New+WordPress+mailing+list+for+asking+and+answering+WordPress+development+questions" 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=EgTS3RwHNfA:2bUblQvXN8o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=EgTS3RwHNfA:2bUblQvXN8o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=EgTS3RwHNfA:2bUblQvXN8o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=EgTS3RwHNfA:2bUblQvXN8o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=EgTS3RwHNfA:2bUblQvXN8o:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/EgTS3RwHNfA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/tips/new-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/tips/new-wordpress-mailing-list-for-asking-and-answering-wordpress-development-questions/</feedburner:origLink></item>
		<item>
		<title>How to Hack the Wordpress Search Function: Search Categories and Child Categories</title>
		<link>http://feedproxy.google.com/~r/WordpressGarage/~3/ekK4IcDpTdU/</link>
		<comments>http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 06:23:56 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[child category]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[parent category]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[subcategory]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/</guid>
		<description><![CDATA[<p class="dropcap-first">Recently, we had a client who wanted a special recipe search. There were 2 ways to extend the search functionality &#8211; manually or dynamically.</p>
<p>1. Search One or More Categories Manually
</p>
<p>If we want to search one category, we could have used this solution which lets you manually add category numbers ...]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Recently, we had a client who wanted a special recipe search. There were 2 ways to extend the search functionality &#8211; manually or dynamically.</p>
<p><strong>1. Search One or More Categories Manually<br />
</strong></p>
<p>If we want to search <strong>one category</strong>, we could have used this <a href="http://www.sandboxdev.com/blog/wordpress/123/search-specific-category-in-wordpress/">solution</a> which lets you manually add category numbers to the search function:</p>
<p>[Replace value="5" with your category number.]</p>
<blockquote><p>&lt;form method=&#8221;get&#8221; id=&#8221;searchform&#8221; action=&#8221;&lt;?php bloginfo(&#8217;home&#8217;); ?&gt;/&#8221;&gt;<br />
&lt;div&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221;&lt;?php echo wp_specialchars($s, 1); ?&gt;&#8221; name=&#8221;s&#8221; id=&#8221;s&#8221; /&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;cat&#8221; value=&#8221;5&#8243; /&gt;<br />
&lt;input type=&#8221;submit&#8221; id=&#8221;searchsubmit&#8221; value=&#8221;Search&#8221; /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;</p></blockquote>
<p><strong>2. Search Subcategories Dynamically</strong></p>
<p>However, we wanted to dynamically search <strong>only the subcategories</strong> of the Recipe Category. The reason being that if you&#8217;re already in the Recipes section of the site, seeing a recipe labeled as Recipes is not helpful. However, seeing a recipe labeled as Dessert (mmm..) and Breakfast is helpful. So, each recipe that the client adds will be in a <strong>subcategory </strong>of recipes (ex. Dessert), but they won&#8217;t have to check off the checkbox next to the Recipes category itself.</p>
<p>Anyway, I&#8217;ve been looking for this solution for a long time and now, thanks to <a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fbitsofink.com%2F&amp;ei=YQtjSuS9MYaEmgOgvdT4Dw&amp;usg=AFQjCNG1logmg3Pto6eFPjwQ6fHtpve3Nw">Ilan Cohen</a>, I present it to you.</p>
<p>[Replace the number 5 with the parent category.]</p>
<blockquote><p>&lt;form method=&#8221;get&#8221; id=&#8221;searchform&#8221; action=&#8221;&lt;?php bloginfo(&#8217;home&#8217;); ?&gt;/&#8221;&gt;<br />
&lt;div id=&#8221;search&#8221;&gt;<br />
&lt;input type=&#8221;text&#8221; value=&#8221;Search&#8230; &#8221; onclick=&#8221;this.value=&#8221;;&#8221; name=&#8221;s&#8221; id=&#8221;s&#8221; /&gt;<br />
&lt;?php $categories = get_categories(&#8217;child_of=5&#8242;);<br />
$catlist = &#8221;;<br />
foreach ($categories as $cat) {<br />
$catlist.= $cat-&gt;cat_ID.&#8217;,';<br />
}<br />
$catlist.&#8217;5&#8242;;<br />
?&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;cat&#8221; value=&#8221;&lt;?php echo &#8220;$catlist&#8221;?&gt;&#8221; /&gt;<br />
&lt;input name=&#8221;" type=&#8221;image&#8221; src=&#8221;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/styles/&lt;?php echo &#8220;$style_path&#8221;; ?&gt;/search.gif&#8221; value=&#8221;Go&#8221; class=&#8221;btn&#8221; /&gt;<br />
&lt;/div&gt;&lt;!&#8211;/search &#8211;&gt;<br />
&lt;/form&gt;</p></blockquote>
<p>The code searches through all the child categories of Category 5 (Recipes). Then, you&#8217;ll see we added an additional &#8220;5&#8243; in this line: $catlist.&#8217;5&#8242;; just in case the client puts a recipe in the Recipes category, and not one of its subcategories.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwordpressgarage.com%2Fcode-snippets%2Fhow-to-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories', '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-hack-the-wordpress-search-function-search-categories-and-child-categories%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-hack-the-wordpress-search-function-search-categories-and-child-categories%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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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-hack-the-wordpress-search-function-search-categories-and-child-categories%2F&amp;title=How+to+Hack+the+Wordpress+Search+Function%3A+Search+Categories+and+Child+Categories" 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=ekK4IcDpTdU:YSTRkNpoliM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=ekK4IcDpTdU:YSTRkNpoliM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=ekK4IcDpTdU:YSTRkNpoliM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressGarage?a=ekK4IcDpTdU:YSTRkNpoliM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressGarage?i=ekK4IcDpTdU:YSTRkNpoliM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/WordpressGarage/~4/ekK4IcDpTdU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/code-snippets/how-to-hack-the-wordpress-search-function-search-categories-and-child-categories/</feedburner:origLink></item>
		<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[<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 ...]]></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[<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 ...]]></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>9</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[<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 Twitter.</p>
<p>According to the official Wordpress site, Wordpress Plugins directory search is no longer ...]]></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>1</slash:comments>
		<feedburner:origLink>http://wordpressgarage.com/news-views/wordpress-plugins-directory-search-no-longer-sucks/</feedburner:origLink></item>
	</channel>
</rss>
