<?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; wordpress</title>
	<atom:link href="http://wpgarage.com/tag/wordpress/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 remove the link to parent pages when using wp_list_pages in WordPress navigation</title>
		<link>http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/</link>
		<comments>http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 15:11:31 +0000</pubDate>
		<dc:creator>David Stein</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[digitalpoint]]></category>
		<category><![CDATA[Navigation bar]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=810</guid>
		<description><![CDATA[Recently I was working on a client&#8217;s WordPress website and he made an interesting request, that I am actually surprised we don&#8217;t see more often. He wanted the top links on his navigation bar to not be live links, and only the sub-pages should actually link to pages on his site.
In this case the top [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was working on a client&#8217;s WordPress website and he made an interesting request, that I am actually surprised we don&#8217;t see more often. He wanted the top links on his navigation bar to not be live links, and only the sub-pages should actually link to pages on his site.</p>
<p>In this case the top page on the navigation bar was called Galleries, which is the parent page for sub-pages with galleries for wedding photos, wedding videos etc. He didn&#8217;t want a main galleries page, but instead he wanted it to be a kind of folder for categorizing the various galleries he was going to have on other pages in his site.</p>
<p>Since we are using wp_list_pages, we can&#8217;t unlink each page on an individual basis since the navigation bar is dynamically formed. So I needed some way to keep using wp_list_pages so that the client can control the navigation bar, but unlink the top Galleries page.</p>
<p>I found the answer on what I think is one of the best forums around of internet and computer experts and people who are eager to help one another: <a title="Digital Point Forums" href="http://forums.digitalpoint.com/" target="_blank">Digital Point</a>.</p>
<p>After a few suggestions from people on the forums, <a title="Navigation bar links" href="http://forums.digitalpoint.com/showthread.php?t=1843887#post14451958" target="_blank">I finally got an answer</a> from the awesome <a title="bvraghav" href="http://forums.digitalpoint.com/member.php?u=432200">bvraghav</a>.</p>
<p>In the header.php section of the file I embeded a javascript code that looked like this:</p>
<pre>
<div>&lt;script type="text/javascript"&gt;
jQuery(function($) {
    $("li.page-item-283").children("a").attr('href', "javascript:void(0)");
});
&lt;/script&gt;</div>
</pre>
<p>This is how it works:</p>
<ul>
<li> The  jquery (a javascript framework) is used to replace the value of href  property in the required html node ( &lt;a  href=&#8221;your-galleries-link&#8221;&gt;&#8230;. &lt;/a&gt; in this case) with  &#8220;javascript:void(0)&#8221;.  Looks like this:  jQuery(function($) {</li>
</ul>
<ul>
<li>The following code selects the li element with: $(&#8220;li.page-item-283&#8243;). In this case 283 the page number that we want to void the link for (in our case the top Galleries page).</li>
</ul>
<ul>
<li>The next part is the  children function which selects all immediate children with tag a: children(&#8220;a&#8221;) . This relates t<span style="color: red;"><span style="color: #000000;">he child pages to the gallery pages and keeps their links. </span><br />
</span></li>
</ul>
<ul>
<li>After this I had to change the attribute href to &#8220;javascript:void(0)&#8221;, which looks like this:  .attr(&#8216;href&#8217;, &#8220;javascript:void(0)&#8221;); This turns th<span style="color: red;"><span style="color: #000000;">e gallery link into void so it won&#8217;t direct anywhere.</span><br />
</span></li>
</ul>
<p>All this comes together to look like the code above.</p>
<p>If you want to make all top level links unlinked, use the following code:</p>
<pre>&lt;script type="text/javascript"&gt;
jQuery(function($) {    
    $("li.page_item").children("a").attr('href', "javascript:void(0)"); });
&lt;/script&gt;</pre>
<p>What I&#8217;m wondering is if the new WordPress navigation system allows users to include items in navigation bars that don&#8217;t actually lead anywhere. Anyone know?</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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;desc=Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;t=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;link=http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/" 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+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;body=Link: http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;srcUrl=http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;srcTitle=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;snippet=Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;summary=Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t&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+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;url=http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&amp;selection=Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/&amp;title=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/+&quot;How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation&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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation%2F&amp;t=How+to+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+navigation" 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+remove+the+link+to+parent+pages+when+using+wp_list_pages+in+WordPress+nav%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%20remove%20the%20link%20to%20parent%20pages%20when%20using%20wp_list_pages%20in%20WordPress%20navigation%22&amp;body=Link: http://wpgarage.com/code-snippets/how-to-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%20I%20was%20working%20on%20a%20client%27s%20WordPress%20website%20and%20he%20made%20an%20interesting%20request%2C%20that%20I%20am%20actually%20surprised%20we%20don%27t%20see%20more%20often.%20He%20wanted%20the%20top%20links%20on%20his%20navigation%20bar%20to%20not%20be%20live%20links%2C%20and%20only%20the%20sub-pages%20should%20actually%20link%20to%20pages%20on%20his%20site.%0D%0A%0D%0AIn%20this%20case%20the%20t" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/" 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-remove-the-link-to-parent-pages-when-using-wp_list_pages-in-wordpress-navigation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress turns 7. It was great then, it&#8217;s awesome now</title>
		<link>http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/</link>
		<comments>http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/#comments</comments>
		<pubDate>Fri, 28 May 2010 08:33:06 +0000</pubDate>
		<dc:creator>Miriam Schwab</dc:creator>
				<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=794</guid>
		<description><![CDATA[Our little baby is turning 7 – WordPress, my how you’ve grown! But the truth is, I remember when I first started using WordPress back in 2007, and it was pretty good then too. I think that shows how WordPress has strong foundations, even at the beginning.
When I first started looking for an Open Source [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WordPress turns 7" href="http://wordpress.org/development/2010/05/lucky-seven/">Our little baby is turning 7</a> – WordPress, my how you’ve grown! But the truth is, I remember when I first started using WordPress back in 2007, and it was pretty good then too. I think that shows how WordPress has strong foundations, even at the beginning.</p>
<p>When I first started looking for an Open Source CMS solution, I looked at Joomla, WordPress and some other systems. I quickly settled on WordPress for the following reasons:</p>
<ul>
<li>The content management scheme made sense to me. Pages, posts, categories. Posts could go in more than one category. It was clean and elegant.</li>
<li>Community. Almost any questions I had, there was an answer somewhere out there. If I had a need, I could almost always find a plugin to fill it.</li>
<li><a href="http://codex.wordpress.org/Main_Page">The Codex</a>. I think I can say that The Codex was my WordPress teacher. It’s such an awesome, community-driven resource.</li>
<li>Comment moderation. Simple and useful.</li>
<li>Easily upload media, even then.</li>
<li>RSS feeds galore. For almost anything you can think of: site wide, categories, tags, all comments, per-post comments, authors, search results,</li>
<li>Template tags. Genius. Even non-developers can wrap their heads around these commands.</li>
<li>SEO. Out of the box WordPress is pretty good. With classic plugins like Google Sitemap XML and All in One SEO, you can do a pretty good job of optimizing a site for the search engines.</li>
<li>The future. Every new version of WordPress added useful features. Some of the best were the addition of tags, one-click upgrade of plugins and core, installation of plugins and themes from the admin (bye-bye FTP!), better comment management in the admin with Reply to, Widgets (at first I didn’t like them!).</li>
</ul>
<p>It seems timely that yesterday I was part of a panel comparing the three leading Open Source content management systems: Joomla, Drupal and WordPress. In my presentation, I emphasized the elegance of WordPress, and explained how the content management works. The tweets during my presentation indicated that people were pretty excited about what WordPress has to offer. Here are some examples:</p>
<p><!-- http://twitter.com/shaidavis/status/14822162678 --><br />
<!-- .bbpbox{background:url(http://a1.twimg.com/profile_background_images/3041638/israel_flag_construction_crop_-small.jpg) #9ae4e8;padding:20px;} --></p>
<div id="tweet_14822162678" class="bbpBox" style="background: url(http://a1.twimg.com/profile_background_images/3041638/israel_flag_construction_crop_-small.jpg) #9ae4e8; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;">thinking of building a design/art portfolio in WP. (rather than my preferred drupal) eager to see if it makes sense <a href="http://search.twitter.com/search?q=%23jwp" target="_new">#jwp</a><span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 08:46:01 " href="http://twitter.com/shaidavis/status/14822162678">Thu May 27 08:46:01 </a>via <a rel="nofollow" href="http://www.tweetdeck.com">TweetDeck</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/shaidavis"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/59966405/shai_and_akiva1_normal.jpg" alt="" /></a><strong><a href="http://twitter.com/shaidavis">shaidavis</a></strong><br />
shaidavis</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/appstudi/status/14822577557 --><br />
<!-- .bbpbox{background:url(http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif) #131516;padding:20px;} --></p>
<div id="tweet_14822577557" class="bbpBox" style="background: url(http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif) #131516; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;"><a href="http://search.twitter.com/search?q=%23jwp" target="_new">#jwp</a> the goal of the wordpress core is to never have to hack it!! good bye legacy programming<span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 08:58:33 " href="http://twitter.com/appstudi/status/14822577557">Thu May 27 08:58:33 </a>via <a rel="nofollow" href="http://www.tweetdeck.com">TweetDeck</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/appstudi"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/738246063/services_icon_normal.png" alt="" /></a><strong><a href="http://twitter.com/appstudi">appSTUDIO</a></strong><br />
appstudi</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/CharlieKalech/status/14822824129 --><br />
<!-- .bbpbox{background:url(http://a1.twimg.com/profile_background_images/3210496/charliekalech-twitback.jpg) #99ccff;padding:20px;} --></p>
<div id="tweet_14822824129" class="bbpBox" style="background: url(http://a1.twimg.com/profile_background_images/3210496/charliekalech-twitback.jpg) #99ccff; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;">Listening to WordPress Diva <a href="http://twitter.com/miriamschwab" target="_new">@miriamschwab</a> at <a href="http://search.twitter.com/search?q=%23JWP" target="_new">#JWP</a> &#8211; Always a pleasure to hear her present!<span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 09:05:35 " href="http://twitter.com/CharlieKalech/status/14822824129">Thu May 27 09:05:35 </a>via <a rel="nofollow" href="http://www.tweetdeck.com">TweetDeck</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/CharlieKalech"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/524454551/twitter-head-300x400_normal.jpg" alt="" /></a><strong><a href="http://twitter.com/CharlieKalech">Charlie Kalech</a></strong><br />
CharlieKalech</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/lasolastech/status/14822899015 --><br />
<!-- .bbpbox{background:url(http://a1.twimg.com/profile_background_images/59252404/twitter-lot.jpg) #c0deed;padding:20px;} --></p>
<div id="tweet_14822899015" class="bbpBox" style="background: url(http://a1.twimg.com/profile_background_images/59252404/twitter-lot.jpg) #c0deed; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;"><a href="http://search.twitter.com/search?q=%23jwp" target="_new">#jwp</a>. I agree with Miriam. You can&#8217;t deny the elegance of WP.<span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 09:07:51 " href="http://twitter.com/lasolastech/status/14822899015">Thu May 27 09:07:51 </a>via <a rel="nofollow" href="http://itunes.apple.com/app/twitter/id333903271?mt=8">Twitter for iPhone</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/lasolastech"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/570613529/Screen_shot_2009-12-11_at_11.01.05_PM_normal.png" alt="" /></a><strong><a href="http://twitter.com/lasolastech">Jeff Mendelson</a></strong><br />
lasolastech</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/appstudi/status/14823062261 --><br />
<!-- .bbpbox{background:url(http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif) #131516;padding:20px;} --></p>
<div id="tweet_14823062261" class="bbpBox" style="background: url(http://s.twimg.com/a/1274899949/images/themes/theme14/bg.gif) #131516; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;">cant wait for <a href="http://search.twitter.com/search?q=%23wordpress" target="_new">#wordpress</a> 3.0 we hate hacking the menu bar <a href="http://search.twitter.com/search?q=%23jwp" target="_new">#jwp</a><span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 09:12:33 " href="http://twitter.com/appstudi/status/14823062261">Thu May 27 09:12:33 </a>via <a rel="nofollow" href="http://www.tweetdeck.com">TweetDeck</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/appstudi"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/738246063/services_icon_normal.png" alt="" /></a><strong><a href="http://twitter.com/appstudi">appSTUDIO</a></strong><br />
appstudi</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/lasolastech/status/14823630646 --><br />
<!-- .bbpbox{background:url(http://a1.twimg.com/profile_background_images/59252404/twitter-lot.jpg) #c0deed;padding:20px;} --></p>
<div id="tweet_14823630646" class="bbpBox" style="background: url(http://a1.twimg.com/profile_background_images/59252404/twitter-lot.jpg) #c0deed; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;"><a href="http://search.twitter.com/search?q=%23jwp" target="_new">#jwp</a>. Am really pumped about Word Press! ?<span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 09:29:19 " href="http://twitter.com/lasolastech/status/14823630646">Thu May 27 09:29:19 </a>via <a rel="nofollow" href="http://itunes.apple.com/app/twitter/id333903271?mt=8">Twitter for iPhone</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/lasolastech"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a3.twimg.com/profile_images/570613529/Screen_shot_2009-12-11_at_11.01.05_PM_normal.png" alt="" /></a><strong><a href="http://twitter.com/lasolastech">Jeff Mendelson</a></strong><br />
lasolastech</span></span></p>
</div>
<p><!-- end of tweet --><!-- http://twitter.com/thebigfelafel/status/14833987328 --><br />
<!-- .bbpbox{background:url(http://a1.twimg.com/profile_background_images/2841380/tbft.gif) #352e28;padding:20px;} --></p>
<div id="tweet_14833987328" class="bbpBox" style="background: url(http://a1.twimg.com/profile_background_images/2841380/tbft.gif) #352e28; padding: 20px;">
<p class="bbpTweet" style="padding-right: 12px; padding-left: 12px; font-size: 16px! important; min-height: 48px; background: #fff; padding-bottom: 10px; margin: 0px; color: #000; line-height: 22px; padding-top: 10px; -webkit-border-radius: 5px;"><a href="http://twitter.com/miriamschwab" target="_new">@miriamschwab</a> gave an awesome WordPress presentation today at the <a href="http://search.twitter.com/search?q=%23JWP" target="_new">#JWP</a> event. Made me love WP all over again!<span class="timestamp" style="display: block; font-size: 12px;"><a title="Thu May 27 13:22:49 " href="http://twitter.com/thebigfelafel/status/14833987328">Thu May 27 13:22:49 </a>via <a rel="nofollow" href="http://www.echofon.com/">Echofon</a></span><span class="metadata" style="clear: both; border-top: 1px solid #e6e6e6; margin-top: 8px; display: block; width: 100%; padding-top: 12px; height: 40px;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/thebigfelafel"><img style="float: left; margin: 0px 7px 0px 0px; width: 38px; height: 38px;" src="http://a1.twimg.com/profile_images/188277082/picme2_normal.JPG" alt="" /></a><strong><a href="http://twitter.com/thebigfelafel">Rebecca Markowitz</a></strong><br />
thebigfelafel</span></span></p>
</div>
<p><!-- end of tweet --></p>
<p>Here&#8217;s the presentation. Click on Menu > View Fullscreen on the player to view in full screen. All images and underlined text are live links. I&#8217;d love to hear your feedback!</p>
<div style="width:425px" id="__ss_4338702"><strong style="display:block;margin:12px 0 4px"><a href="http://www.slideshare.net/illuminea/meet-wordpress" title="Meet WordPress">Meet WordPress</a></strong><object id="__sse4338702" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seminaronwordpressjoomladrupal-online-100528020459-phpapp02&#038;stripped_title=meet-wordpress" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse4338702" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=seminaronwordpressjoomladrupal-online-100528020459-phpapp02&#038;stripped_title=meet-wordpress" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="padding:5px 0 12px">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/illuminea">illuminea marketing &#038; media</a>.</div>
</div>


<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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;desc=Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;t=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;link=http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/" 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+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;body=Link: http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;srcUrl=http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;srcTitle=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;snippet=Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;summary=Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O&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+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;url=http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&amp;selection=Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/&amp;title=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/+&quot;WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now&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%2Fwordpress-as-cms%2Fwordpress-turns-7-it-was-great-then-its-awesome-now%2F&amp;t=WordPress+turns+7.+It+was+great+then%2C+it%27s+awesome+now" 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+turns+7.+It+was+great+then%2C+it%27s+awesome+now+-++%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%20turns%207.%20It%20was%20great%20then%2C%20it%27s%20awesome%20now%22&amp;body=Link: http://wpgarage.com/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Our%20little%20baby%20is%20turning%207%20%E2%80%93%20WordPress%2C%20my%20how%20you%E2%80%99ve%20grown%21%20But%20the%20truth%20is%2C%20I%20remember%20when%20I%20first%20started%20using%20WordPress%20back%20in%202007%2C%20and%20it%20was%20pretty%20good%20then%20too.%20I%20think%20that%20shows%20how%20WordPress%20has%20strong%20foundations%2C%20even%20at%20the%20beginning.%0D%0A%0D%0AWhen%20I%20first%20started%20looking%20for%20an%20O" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/" 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/wordpress-as-cms/wordpress-turns-7-it-was-great-then-its-awesome-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ad Manager WordPress plugin OIO Publisher Review</title>
		<link>http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/</link>
		<comments>http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/#comments</comments>
		<pubDate>Thu, 27 May 2010 12:56:46 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Monetization]]></category>
		<category><![CDATA[ad manager]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[oio publisher]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=782</guid>
		<description><![CDATA[In love! In love with a WordPress plugin! No, they&#8217;re not paying me to say that, although I do have a coupon you could use if you feel like getting the plugin: OIO Publisher(affiliate link).
I&#8217;ve been searching for a no-frills, easy to use ad management solution for WordPress for ages, and never managed to find [...]]]></description>
			<content:encoded><![CDATA[<p>In love! In love with a WordPress plugin! No, they&#8217;re not paying me to say that, although I do have a coupon you could use if you feel like getting the plugin: <a href=" 	http://www.oiopublisher.com/ref.php?u=5102">OIO Publisher</a>(affiliate link).</p>
<p>I&#8217;ve been searching for a no-frills, easy to use ad management solution for WordPress for ages, and never managed to find one. First, I tried <a href="http://www.google.com/dfp/login/en_US/dfp.html">Google Ad Manager</a> but I needed 20 tutorials and still didn&#8217;t have their system down with all their terminology and complexities. Plus, I needed to make it client-friendly by setting up lots of blank ad spots in case the client got ads in the future so I wouldn&#8217;t have to continue to be involved by adding code to their theme files. I timed myself, and setting up the Google Ad Manger for a client took at least 8 hours.</p>
<p>Later, we started looking around for an automated advertising solution for our own site, WPGarage. I looked through other sites that were offering ads, and a bunch of them were using the OIO Publisher system. I tried looking for the plugin in the WP Plugin Directory, but to no avail. I then went to the <a href="http://www.oiopublisher.com/ref.php?u=5102">OIO Publisher site</a> and realized it&#8217;s a premium plugin for (gasp) $47. But, what choice did I have? Burnt out from Google Ad Manager and the<a href="http://wordpress.org/extend/plugins/search.php?q=ad&amp;sort="> free WordPress ad manager plugins</a> that always manage to be missing some major feature, we decided to try it out.</p>
<p>And here&#8217;s what I learned about the OIO Publisher Ad Manager plugin:</p>
<p><strong>Total setup time:</strong> 3 hours.<br />
Basic setup involves setting up ad zones for banner, text, sponsored posts, or custom ads through the admin setup panel and then entering the ads for each zone. Then, you take the output code of each ad that they give you and add it to your theme files.</p>
<p><strong>Admin Setup Panel:</strong> It took a little while to get used to the admin panel. For example, where are the statistics hiding? I eventually found the stats under Purchases &gt; Banner Ads &gt; Active. Not so intuitive and it would be nice to have a separate stats section that is easier to access.</p>
<p><strong>Automated: </strong>I think one of the best things about the plugin is that you can set it up to act as a sales manager, taking orders from advertisers, and processing their orders. You can see it <a href="http://wpgarage.com/advertise">in action</a> on our site. OIO accepts PayPal, Google Checkout, and a bunch of other payment options.</p>
<p>Here&#8217;s a screenshot of the Advertise Page on our site:</p>
<p><img class="alignnone size-full wp-image-783" title="350ad" src="http://wpgarage.com/wp-content/uploads/2010/05/350ad.png" alt="" width="350" height="403" /></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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;desc=In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;t=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;link=http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/" 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=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;body=Link: http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;srcUrl=http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;srcTitle=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;snippet=In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;summary=In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20&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=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;url=http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&amp;selection=In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/&amp;title=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/+&quot;Ad+Manager+WordPress+plugin+OIO+Publisher+Review+&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%2Fmonetization%2Fad-manager-wordpress-plugin-oio-publisher-review%2F&amp;t=Ad+Manager+WordPress+plugin+OIO+Publisher+Review+" 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=Ad+Manager+WordPress+plugin+OIO+Publisher+Review++-++%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=%22Ad%20Manager%20WordPress%20plugin%20OIO%20Publisher%20Review%20%22&amp;body=Link: http://wpgarage.com/monetization/ad-manager-wordpress-plugin-oio-publisher-review/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20love%21%20In%20love%20with%20a%20WordPress%20plugin%21%20No%2C%20they%27re%20not%20paying%20me%20to%20say%20that%2C%20although%20I%20do%20have%20a%20coupon%20you%20could%20use%20if%20you%20feel%20like%20getting%20the%20plugin%3A%20OIO%20Publisher%28affiliate%20link%29.%0D%0A%0D%0AI%27ve%20been%20searching%20for%20a%20no-frills%2C%20easy%20to%20use%20ad%20management%20solution%20for%20WordPress%20for%20ages%2C%20and%20never%20" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/" 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/monetization/ad-manager-wordpress-plugin-oio-publisher-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Override the Slug or Page Permalink in WordPress</title>
		<link>http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/</link>
		<comments>http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 15:13:20 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Shorties]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[override]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[slug]]></category>
		<category><![CDATA[trash]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=679</guid>
		<description><![CDATA[The Problem:
Recently, one of our clients wanted to change the slug, or permalink, from &#8220;about-2&#8243;, back to just plain ol&#8217; &#8220;about&#8221;.  I tried changing the slug from the &#8220;quick edit&#8221; mode. I tried to Edit the Permalink from the Post Page. No luck, it kept reverting back to about-2.   After doing a few searches, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Problem:</strong></p>
<p>Recently, one of our clients wanted to change the slug, or permalink, from &#8220;about-2&#8243;, back to just plain ol&#8217; &#8220;about&#8221;.  I tried changing the slug from the &#8220;quick edit&#8221; mode. I tried to Edit the Permalink from the Post Page. No luck, it kept reverting back to about-2.   After doing a few searches, I noticed that others had experienced this problem as well.</p>
<p><strong>The Solution:</strong></p>
<p>So, I finally found this <a href="http://wordpress.org/support/topic/354239">post</a> on the WordPress support forum which suggested I check the <strong>Trash folder</strong>. Sure enough, I found a page called &#8220;About&#8221; hanging out in the Trash. Once I <strong>permanently deleted</strong> the page from the Trash, I was able to save the permalink successfully.</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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;desc=The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;t=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;link=http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/" 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+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;body=Link: http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;srcUrl=http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;srcTitle=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;snippet=The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;summary=The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a&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+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;url=http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&amp;selection=The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/&amp;title=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/+&quot;How+to+Override+the+Slug+or+Page+Permalink+in+WordPress&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%2Fshorties%2Fhow-to-override-the-slug-or-page-permalink-in-wordpress%2F&amp;t=How+to+Override+the+Slug+or+Page+Permalink+in+WordPress" 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+Override+the+Slug+or+Page+Permalink+in+WordPress+-++%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%20Override%20the%20Slug%20or%20Page%20Permalink%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Problem%3A%0D%0A%0D%0ARecently%2C%20one%20of%20our%20clients%20wanted%20to%20change%20the%20slug%2C%20or%20permalink%2C%20from%20%22about-2%22%2C%20back%20to%20just%20plain%20ol%27%20%22about%22.%C2%A0%20I%20tried%20changing%20the%20slug%20from%20the%20%22quick%20edit%22%20mode.%20I%20tried%20to%20Edit%20the%20Permalink%20from%20the%20Post%20Page.%20No%20luck%2C%20it%20kept%20reverting%20back%20to%20about-2.%C2%A0%20%20After%20doing%20a" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/" 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/shorties/how-to-override-the-slug-or-page-permalink-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress as CMS: 4 content block plugins with WYSIWYG editors</title>
		<link>http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/</link>
		<comments>http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 10:25:51 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[content blocks]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=648</guid>
		<description><![CDATA[We are constantly trying to find easier and better ways to create manageable blocks of content for clients.
Widgets
Widgets are only helpful up to a certain point since there isn&#8217;t a great plugin  for a WYSIWYG visual editor that I&#8217;m aware of. The Rich Text Widget and WYSIWYG Text Widget are buggy and aren&#8217;t compatible with [...]]]></description>
			<content:encoded><![CDATA[<p>We are constantly trying to find easier and better ways to create manageable blocks of content for clients.</p>
<p><strong>Widgets</strong></p>
<p>Widgets are only helpful up to a certain point since there isn&#8217;t a great plugin  for a WYSIWYG visual editor that I&#8217;m aware of. The <a href="http://wordpress.org/extend/plugins/rich-text-widget/">Rich Text Widget</a> and <a href="http://wordpress.org/extend/plugins/wysiwyg-text-widget/">WYSIWYG Text Widget</a> are buggy and aren&#8217;t compatible with 2.9.2.  <a href="http://wordpress.org/extend/plugins/rich-widget/">Rich Widget</a> is ok but requires too many clicks and is not so user friendly.</p>
<p><strong>Custom Fields</strong></p>
<p>Custom fields are only helpful up to a certain point &#8211; since once again there is no visual editor. Coding in your own add_meta_box to the functions.php to add customized,  user-friendly custom fields takes a fair amount of time and quite a bit of PHP know-how. Also, explaining to clients the concept of custom fields is not a super joy.</p>
<p>So, what is the solution for expanding WordPress CMS functionality?</p>
<p><strong>Content Blocks</strong></p>
<p>I investigated a few CMS content block plugins, and here&#8217;s what I have to say:</p>
<p>1. <strong><a href="http://wordpress.org/extend/plugins/pagely-multiedit/">Page.ly MultiEdit</a></strong> Excited to try out a new plugin that would help with editable content, I installed the MultiEdit plugin with <a href="http://blog.page.ly/multiedit-plugin/">instructions here.</a> MultEdit lets you flip between tabs to edit multiple areas of content! So exciting, but no matter what I did, I couldn&#8217;t get the content in each tab to save properly. It only saved the content in the last tab called &#8220;Right&#8221;. Sigh.</p>
<p><img title="multiedit" src="../wp-content/uploads/2010/02/multiedit.png" alt="" width="464" height="211" /></p>
<p>2. <strong><a href="http://wordpress.org/extend/plugins/multiple-content-blocks/">Multiple Content Blocks</a></strong> This plugin is insanely easy to use. All you have to do is add one snippet of code &lt;?php the_block (&#8216;newarea&#8217;); ?&gt; to a page template and voila! you have another WYSIWYG text editor in the admin area. Whatever you enter into this new content area will show up on the page where the snippet is. Amazing. <strong>BUT</strong>, I couldn&#8217;t figure out how to use this code in the sidebar since the sidebar isn&#8217;t a page. Sad.</p>
<p>3. <strong><a href="http://wordpress.org/extend/plugins/page-blocks/">Page blocks</a> </strong>I followed the instructions for how to use the plugin like a good girl, but I still couldn&#8217;t get it to work the way I wanted with additional editors in the editing page area. <img src='http://wpgarage.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>4. <a href="http://wordpress.org/extend/plugins/custom-field-template/"><strong>Custom field template</strong></a> Bring out the champagne peoples! We have a winner! This plugin is the daddy of all custom field plugins. It lets you add whatever customization you want to the custom field and then add code into your template as if it were a regular custom field.</p>
<p>Here&#8217;s how to use it.</p>
<ol>
<li>Install and activate the plugin. Obviously.</li>
<li>Go to the new tab in the admin area called Custom Field Template.</li>
<li>Modify the example they have. Here&#8217;s the one that I created:[ContentAreaName]<br />
type = textarea<br />
rows = 4<br />
cols = 40<br />
tinyMCE = true<br />
htmlEditor = true<br />
mediaButton = true<br />
This means that the custom field I created has a WYSIWYG TinyMCE text editor, an HTML view, and a media button so that the client can upload an image. There are tons more options explained in the settings page.</li>
<li>Add this code to wherever you want in your template files:</li>
</ol>
<p style="padding-left: 30px;">&lt;?php if(get_post_meta($post-&gt;ID, &#8220;ContentAreaName&#8221;, true)) { ?&gt;<br />
&lt;?php echo get_post_meta($post-&gt;ID, &#8220;ContentAreaName&#8221;, $single = true); ?&gt;<br />
&lt;?php } ?&gt;</p>
<p style="padding-left: 30px;">or if you want to add it as a shortcode, use [ContentAreaName]</p>
<p>That&#8217;s all for now. If you have another content block CMS tip, please share!</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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;desc=We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;t=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;link=http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/" 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+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;body=Link: http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;srcUrl=http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;srcTitle=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;snippet=We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;summary=We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20&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+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;url=http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&amp;selection=We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/&amp;title=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/+&quot;WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors&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%2Fwordpress-as-cms%2Fwordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors%2F&amp;t=WordPress+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors" 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+as+CMS%3A+4+content+block+plugins+with+WYSIWYG+editors+-++%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%20as%20CMS%3A%204%20content%20block%20plugins%20with%20WYSIWYG%20editors%22&amp;body=Link: http://wpgarage.com/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20are%20constantly%20trying%20to%20find%20easier%20and%20better%20ways%20to%20create%20manageable%20blocks%20of%20content%20for%20clients.%0D%0A%0D%0AWidgets%0D%0A%0D%0AWidgets%20are%20only%20helpful%20up%20to%20a%20certain%20point%20since%20there%20isn%27t%20a%20great%20plugin%C2%A0%20for%20a%20WYSIWYG%20visual%20editor%20that%20I%27m%20aware%20of.%20The%20Rich%20Text%20Widget%20and%20WYSIWYG%20Text%20Widget%20are%20" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/" 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/wordpress-as-cms/wordpress-as-cms-4-content-block-plugins-with-wysiwyg-editors/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Add SWFir to WordPress for nice rounded corners, shadows and other effects</title>
		<link>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/</link>
		<comments>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:42:16 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[image replacement]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[swfir]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=623</guid>
		<description><![CDATA[While collaborating with our colleagues at Red Door on a project, we came across SWFir,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions [...]]]></description>
			<content:encoded><![CDATA[<p>While collaborating with our colleagues at <a href="http://www.reddoor.biz/">Red Door</a> on a project, we came across <a href="http://www.swfir.com/">SWFir</a>,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions on their site a little skimpy for WordPress users so I thought I&#8217;d share how to integrate SWFir for WordPress users.</p>
<p>CSS3 is also great for rounded <a href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/">corners and shadows</a>, but unfortunately we still need to keep in mind people using all different versions of Internet Explorer.</p>
<p><img title="swfir" src="http://wpgarage.com/wp-content/uploads/2010/02/swfir.png" alt="" width="400" height="370" /></p>
<ol>
<li>Download <a href="http://www.swfir.com/mint/pepper/tillkruess/downloads/download.php?uri=/files/swfir_v1.zip">SWFir</a></li>
<li>Upload <code>swfir.js</code> and <code>swfir.swf</code> into a folder called swfir into  your theme directory</li>
<li>Include the swfIR JavaScript file in the <code>&lt;head&gt;</code> of your document like this:<code><br />
</code><code>&lt;script type="text/javascript" src="swfir.js"&gt;&lt;/script&gt;</code></li>
<li>Add this to footer.php just before the closing body tag&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// swfIR<br />
window.onload = function() {<br />
var sir = new swfir();<br />
sir.specify(&#8220;border-radius&#8221;, &#8220;15&#8243;);<br />
sir.specify(&#8220;src&#8221;, &#8220;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/swfir/swfir.swf&#8221;);<br />
sir.swap(&#8220;.latest-posts-center img&#8221;);<br />
sir.swap(&#8220;.latest-posts-center a img&#8221;);<br />
sir.swap(&#8220;img.rounded&#8221;);<br />
&lt;/script&gt;</p>
<p>You may choose from any of these parameters:</p>
<ul>
<li>border-radius</li>
<li>border-width</li>
<li>border-color</li>
<li>shadow-offset</li>
<li>shadow-angle</li>
<li>shadow-alpha</li>
<li>shadow-blur</li>
<li>shadow-blur-x</li>
<li>shadow-blur-y</li>
<li>shadow-strength</li>
<li>shadow-color</li>
<li>shadow-quality</li>
<li>shadow-inner</li>
<li>shadow-knockout</li>
<li>shadow-hide</li>
<li>rotate</li>
<li>overflow</li>
<li>link</li>
<li>elasticity</li>
</ul>
</li>
<li><strong>Add this in the loop somewhere </strong><strong> </strong>Note: this is assuming that your images are not organized by month and day under Settings &gt; Miscellaneous &#8211; the box is unchecked.<br />
Also, you can change the width to whatever you want and it will resize automatically</p>
<p>&lt;?php if ( get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, true) ) {<br />
$postimg = get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, $single = true);<br />
if((stristr($postimg,&#8217;http&#8217;)===FALSE) &amp;&amp; (stristr($postimg,&#8217;wp-content&#8217;)===FALSE)) {<br />
$postimg = get_bloginfo(&#8217;siteurl&#8217;).&#8221;/wp-content/uploads/&#8221;.$postimg;<br />
} ?&gt;<br />
&lt;div&gt;<br />
&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;<br />
&lt;img src=&#8221;&lt;?php echo $postimg; ?&gt;&#8221; alt=&#8221;" width=&#8221;140&#8243;  /&gt;&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</li>
<li>When you create a post, upload an image and copy the Link URL. Create a custom fields key rounded_img and paste the Link URL in the Value Box.<strong><br />
</strong></li>
</ol>


<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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;desc=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;t=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;link=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" 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=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;body=Link: http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;srcUrl=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;srcTitle=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;snippet=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;summary=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20&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=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;selection=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/+&quot;Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&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%2Fdesign%2Fadd-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects%2F&amp;t=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" 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=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects+-++%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=%22Add%20SWFir%20to%20WordPress%20for%20nice%20rounded%20corners%2C%20shadows%20and%20other%20effects%22&amp;body=Link: http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" 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/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display sticky post and exclude it from recent posts list in WordPress</title>
		<link>http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/</link>
		<comments>http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:30:03 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[exclude]]></category>
		<category><![CDATA[recent posts]]></category>
		<category><![CDATA[sticky posts]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=592</guid>
		<description><![CDATA[We were working on a WordPress site that needed to display a sticky post at the top of the blog page with one style, and then below it a list of the most recent posts with a completely different style.
I realize that you can just style the sticky post using the sticky-related classes provided by [...]]]></description>
			<content:encoded><![CDATA[<p>We were working on a WordPress site that needed to display a sticky post at the top of the blog page with one style, and then below it a list of the most recent posts with a completely different style.</p>
<p>I realize that you can just style the sticky post using the sticky-related classes provided by WordPress:</p>
<blockquote><p>&lt;div &lt;?php post_class(); ?&gt;&gt; and .sticky class</p></blockquote>
<p>but I needed to have design elements appear in between the sticky post and the rest of the recent posts, and the recent posts needed to have a completely different design than the sticky. Therefore I decided to go with a 2 loop solution. Once we were using two loops, we had to also make sure that sticky post did not repeat itself and appear in the list of recent posts following it.</p>
<p><a href="http://www.nathanrice.net/blog/definitive-sticky-posts-guide-for-wordpress-27/">Nathan Rice</a> provides a lot of useful information about sticky posts but I couldn&#8217;t get the code he posted to work properly. So I went on a hunt to figure it out.</p>
<h2>How to display a sticky post</h2>
<p>The best solution I found for how to display a WordPress sticky post was a <a href="http://justintadlock.com/archives/2009/03/28/get-the-latest-sticky-posts-in-wordpress#comment-113133">comment </a>by <cite title="http://www.ethymos.com.br"></cite><a title="Eduardo" rel="external nofollow" href="http://www.ethymos.com.br/">Eduardo</a> on Justin Tadlock&#8217;s post <a title="Get the latest sticky posts in WordPress" href="http://justintadlock.com/archives/2009/03/28/get-the-latest-sticky-posts-in-wordpress">Get the Latest Sticky Post</a>. He gave the following code:</p>
<blockquote><p>&lt;?php<br />
$sticky = get_option( &#8217;sticky_posts&#8217; );<br />
query_posts( array( &#8216;post__in&#8217; =&gt; $sticky, &#8216;caller_get_posts&#8217; =&gt; 1, &#8216;orderby&#8217; =&gt; ID, &#8217;showposts&#8217; =&gt; 2 ) );<br />
?&gt;<br />
&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;<br />
&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;<br />
&lt;?php endwhile;?&gt;</p>
<p>&lt;?php endif; ?&gt;</p></blockquote>
<p>It worked very nicely.</p>
<h2>How to exclude sticky posts from a list of recent posts</h2>
<p>I then wanted to show a list of 3 recent posts that excluded the post that had been defined as sticky. After many trials and errors with different solutions posted around the web, I finally found one that worked on the <a href="http://wordpress.org/support/topic/338776">WordPress Support Forum.</a></p>
<blockquote><p>&lt;?php $sticky = get_option(&#8217;sticky_posts&#8217;) ;</p>
<p>$post_to_exclude[] = $sticky[0];</p>
<p>$args=array(<br />
&#8216;caller_get_posts&#8217;=&gt;1,<br />
&#8217;showposts&#8217;=&gt;2,<br />
&#8216;post__not_in&#8217;=&gt; $post_to_exclude,<br />
);</p>
<p>query_posts($args); ?&gt;</p>
<p>&lt;h2&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt; &lt;/h2&gt;</p>
<p>&lt;?php while (have_posts()) : the_post();  ?&gt;</p>
<p>&lt;?php endwhile;?&gt;</p></blockquote>
<p>So there you have it: a workable way to have a WordPress sticky post with one style, and a list of recent posts excluding the sticky post with a completely different style below the sticky post.</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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;desc=We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;t=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;link=http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/" 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=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;body=Link: http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;srcUrl=http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;srcTitle=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;snippet=We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;summary=We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20&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=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;url=http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&amp;selection=We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/&amp;title=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/+&quot;Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress&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%2Fdisplay-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress%2F&amp;t=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress" 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=Display+sticky+post+and+exclude+it+from+recent+posts+list+in+WordPress+-++%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=%22Display%20sticky%20post%20and%20exclude%20it%20from%20recent%20posts%20list%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/code-snippets/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20were%20working%20on%20a%20WordPress%20site%20that%20needed%20to%20display%20a%20sticky%20post%20at%20the%20top%20of%20the%20blog%20page%20with%20one%20style%2C%20and%20then%20below%20it%20a%20list%20of%20the%20most%20recent%20posts%20with%20a%20completely%20different%20style.%0D%0A%0D%0AI%20realize%20that%20you%20can%20just%20style%20the%20sticky%20post%20using%20the%20sticky-related%20classes%20provided%20by%20" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/" 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/display-sticky-post-and-exclude-it-from-recent-posts-list-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Change Permalink Structure in WordPress without Duplicate Content</title>
		<link>http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/</link>
		<comments>http://wpgarage.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[Recently we had a client who wanted to change their Permalink structure from
Old Permalink structure: /%author%/%category%/%postname%/
to:
New Permalink structure: /%author%/%category%/%postname%/%post_id%/
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.
I wanted to simply change the Permalink structure by going to Settings&#62;Permalinks in [...]]]></description>
			<content:encoded><![CDATA[<p>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>


<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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;desc=Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;t=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;link=http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/" 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+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;body=Link: http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;srcUrl=http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;srcTitle=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;snippet=Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;summary=Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits&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+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;url=http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&amp;selection=Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/&amp;title=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/+&quot;How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content&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%2Fplugins%2Fhow-to-change-permalink-structure-in-wordpress-without-duplicate-content%2F&amp;t=How+to+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content" 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+Change+Permalink+Structure+in+WordPress+without+Duplicate+Content+-++%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%20Change%20Permalink%20Structure%20in%20WordPress%20without%20Duplicate%20Content%22&amp;body=Link: http://wpgarage.com/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%20we%20had%20a%20client%20who%20wanted%20to%20change%20their%20Permalink%20structure%20from%0D%0A%0D%0AOld%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%0D%0A%0D%0Ato%3A%0D%0A%0D%0ANew%20Permalink%20structure%3A%20%2F%25author%25%2F%25category%25%2F%25postname%25%2F%25post_id%25%2F%0D%0A%0D%0Aso%20that%20they%20would%20qualify%20for%20Google%20News.%20Apparently%20you%20need%20at%20least%203%20digits" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/" 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/plugins/how-to-change-permalink-structure-in-wordpress-without-duplicate-content/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to list the 4 latest posts with only one post per author in WordPress</title>
		<link>http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/</link>
		<comments>http://wpgarage.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[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.
The site in question is still in Beta, [...]]]></description>
			<content:encoded><![CDATA[<p>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://wpgarage.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://wpgarage.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(&#8216;level_7&#8242;))<br />
continue;<br />
$ps = get_posts(&#8216;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(&#8216;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(&#8216;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>


<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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;desc=Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;t=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;link=http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/" 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+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;body=Link: http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/&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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;srcUrl=http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/&amp;srcTitle=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;snippet=Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;summary=Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta&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+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;url=http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&amp;selection=Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/" 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/list-4-latest-posts-with-only-one-post-per-author/&amp;title=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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/list-4-latest-posts-with-only-one-post-per-author/+&quot;How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress&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%2Flist-4-latest-posts-with-only-one-post-per-author%2F&amp;t=How+to+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress" 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+list+the+4+latest+posts+with+only+one+post+per+author+in+WordPress+-++%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%20list%20the%204%20latest%20posts%20with%20only%20one%20post%20per%20author%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/code-snippets/list-4-latest-posts-with-only-one-post-per-author/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%2C%20one%20site%20we%20were%20working%20on%20needed%20a%20sidebar%20that%20would%20show%20the%204%20most%20recent%20posts%20on%20the%20site.%20But%20here%E2%80%99s%20the%20catch%3A%20they%20wanted%20only%20one%20post%20per%20author.%20And%2C%20each%20author%20had%20to%20have%20the%20role%20of%20%E2%80%9Cauthor%E2%80%9D%20as%20opposed%20to%20contributor%20or%20admin.%0D%0A%0D%0AThe%20site%20in%20question%20is%20still%20in%20Beta" 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/list-4-latest-posts-with-only-one-post-per-author/" 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/list-4-latest-posts-with-only-one-post-per-author/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Customize Multiple Search Result Pages in Wordpress</title>
		<link>http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/</link>
		<comments>http://wpgarage.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[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 learned how to create multiple search [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous post, we discussed how to <a href="http://wpgarage.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(&#8216;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://wpgarage.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(&#8216;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(&#8216;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>


<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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;desc=In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create" 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-customize-multiple-search-result-pages-in-wordpress/&amp;t=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;link=http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/" 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+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;body=Link: http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/&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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;srcUrl=http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/&amp;srcTitle=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;snippet=In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;summary=In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create&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+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;url=http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&amp;selection=In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/" 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-customize-multiple-search-result-pages-in-wordpress/&amp;title=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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-customize-multiple-search-result-pages-in-wordpress/+&quot;How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress&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-customize-multiple-search-result-pages-in-wordpress%2F&amp;t=How+to+Customize+Multiple+Search+Result+Pages+in+Wordpress" 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+Customize+Multiple+Search+Result+Pages+in+Wordpress+-++%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%20Customize%20Multiple%20Search%20Result%20Pages%20in%20Wordpress%22&amp;body=Link: http://wpgarage.com/code-snippets/how-to-customize-multiple-search-result-pages-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20previous%20post%2C%20we%20discussed%20how%20to%20hack%20the%20search%20function%20in%20Wordpress%20to%20have%20an%20additional%20search%20form%20that%20would%20search%C2%A0%20subcategories.%20Now%20that%20you%20have%202%20or%20more%20search%20forms%20on%20your%20site%2C%20you%20might%20need%20to%20customize%20the%20search%20results.%20Thanks%20to%20this%20solution%2C%20I%20learned%20how%20to%20create" 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-customize-multiple-search-result-pages-in-wordpress/" 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-customize-multiple-search-result-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
