<?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</title>
	<atom:link href="http://wpgarage.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Mon, 30 Aug 2010 10:34:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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 [...]]]></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 [...]]]></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 [...]]]></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 add styles and buttons to the WYSIWYG Visual Editor in WordPress</title>
		<link>http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/</link>
		<comments>http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/#comments</comments>
		<pubDate>Sun, 16 May 2010 05:46:28 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[visual editor]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=769</guid>
		<description><![CDATA[The Visual Editor in WordPress is great for clients. It lets them feel comfortable adding content with Word-like buttons that they are familiar with. But, what happens when they want more font styles? Although you can find plugins that add Quicktags to the HTML view Editor, such as Oren Yomtov&#8217;s Post Editor Buttons Plugin, I [...]]]></description>
			<content:encoded><![CDATA[<p>The Visual Editor in WordPress is great for clients. It lets them feel comfortable adding content with Word-like buttons that they are familiar with.</p>
<p>But, what happens when they want more font styles?</p>
<p>Although you can find plugins that add Quicktags to the HTML view Editor, such as Oren Yomtov&#8217;s <a href="http://wordpress.org/extend/plugins/post-editor-buttons/">Post Editor Buttons Plugin,</a> I wanted to make adding content as easy as possible for clients by putting the extra styles in the visual editor instead.</p>
<p>I wanted to add one style to the list of default format styles: h1, h2, etc. but every time I tried some <a href="http://wpengineer.com/customize-wordpress-wysiwyg-editor/">new code</a> in my functions.php, it just wouldn&#8217;t show up correctly.</p>
<p>And then I gave in and saw what the massive <a href="http://wordpress.org/extend/plugins/tinymce-advanced/">TinyMCE Advanced plugin</a> had to offer. I was hesitant to use it since it has so many options and I just needed to add one style but it turned out to be a quick and really easy way to add styles to the Visual Editor.</p>
<p><strong>How to add custom styles to the TInyMCE Advanced Plugin:</strong></p>
<ol>
<li>After you activate the plugin, go to the settings page and drag and drop the Styles dropdown to the row of buttons above.</li>
<li>Go to the plugin files and in the CSS folder, open the tadv-mce.css file. Follow the examples that are there and add your styles to the list. It then looks to your theme&#8217;s stylesheet for the style definition.</li>
<li>The styles then show up in the Styles dropdown in the Post or Page Visual Editor!</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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;desc=The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov" 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/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;t=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;link=http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-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+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;body=Link: http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov" 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/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;srcUrl=http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;srcTitle=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;snippet=The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov" 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/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;summary=The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov&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+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;url=http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+in+WordPress&amp;selection=The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov" 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/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/&amp;title=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/+&quot;How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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%2Fwordpress-as-cms%2Fhow-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress%2F&amp;t=How+to+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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+add+styles+and+buttons+to+the+WYSIWYG+Visual+Editor+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%20add%20styles%20and%20buttons%20to%20the%20WYSIWYG%20Visual%20Editor%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Visual%20Editor%20in%20WordPress%20is%20great%20for%20clients.%20It%20lets%20them%20feel%20comfortable%20adding%20content%20with%20Word-like%20buttons%20that%20they%20are%20familiar%20with.%0D%0A%0D%0ABut%2C%20what%20happens%20when%20they%20want%20more%20font%20styles%3F%0D%0A%0D%0AAlthough%20you%20can%20find%20plugins%20that%20add%20Quicktags%20to%20the%20HTML%20view%20Editor%2C%20such%20as%20Oren%20Yomtov" 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/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-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/wordpress-as-cms/how-to-add-styles-and-buttons-to-the-wysiwyg-visual-editor-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hebrew Installation, UTF-8 and Sufficient Permission in WordPress</title>
		<link>http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/</link>
		<comments>http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/#comments</comments>
		<pubDate>Sun, 02 May 2010 13:05:16 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Hebrew]]></category>
		<category><![CDATA[sufficient permission]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=722</guid>
		<description><![CDATA[I just published a Hebrew website with a Hebrew installation of WordPress. I first built the site locally, and then moved the database over to the client&#8217;s site.  When I tried to log in, I got this beauty of an error &#8220;You do not have sufficient permissions to access this page&#8221; in Hebrew, of course. [...]]]></description>
			<content:encoded><![CDATA[<p>I just published a Hebrew website with a <a href="http://he.wordpress.org/">Hebrew installation of WordPress</a>. I first built the site locally, and then moved the database over to the client&#8217;s site.  When I tried to log in, I got this beauty of an error &#8220;You do not have sufficient permissions to access this page&#8221; in Hebrew, of course.</p>
<p>The advice I found in the WP Support Forums were mostly <a href="http://beconfused.com/2007/08/28/how-to-solve-you-do-not-have-sufficient-permissions-to-access-this-page-in-wordpress/">related to WP Database Prefixes</a>.  I had changed the prefixes, so I thought this was the problem.</p>
<p>But, after numerous exports, imports, and hair pulling, I started reviewing everything I had done during the database transfer. And, I remembered a very tiny detail.  The <a href="http://wpgarage.com/tips/getting-hebrew-to-work-on-wordpress-22/"> UTF-8</a> tag in the wp-config.php file.</p>
<p>Before moving the database over, I modified the wp-config file and removed the UTF-8 tag. BIG MISTAKE. You only need to remove the UTF-8 code to get Hebrew to work on an English installation of WordPress.  Since this time it was  a Hebrew installation, I didn&#8217;t need to remove the UTF-8 tag.  And, like magic, once I put the tag back in, I had sufficient permission to enter the site and be on my jolly way. Thank Goodness!</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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;desc=I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course." 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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;t=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;link=http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-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=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;body=Link: http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course." 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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;srcUrl=http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;srcTitle=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;snippet=I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course." 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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;summary=I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course.&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=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;url=http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+in+WordPress&amp;selection=I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course." 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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/&amp;title=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/+&quot;Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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%2Ftips%2Fhebrew-installation-utf-8-and-sufficient-permission-in-wordpress%2F&amp;t=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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=Hebrew+Installation%2C+UTF-8+and+Sufficient+Permission+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=%22Hebrew%20Installation%2C%20UTF-8%20and%20Sufficient%20Permission%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20just%20published%20a%20Hebrew%20website%20with%20a%20Hebrew%20installation%20of%20WordPress.%20I%20first%20built%20the%20site%20locally%2C%20and%20then%20moved%20the%20database%20over%20to%20the%20client%27s%20site.%C2%A0%20When%20I%20tried%20to%20log%20in%2C%20I%20got%20this%20beauty%20of%20an%20error%20%22You%20do%20not%20have%20sufficient%20permissions%20to%20access%20this%20page%22%20in%20Hebrew%2C%20of%20course." 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/tips/hebrew-installation-utf-8-and-sufficient-permission-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/tips/hebrew-installation-utf-8-and-sufficient-permission-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Automatic Plugin Upgrade broken after WordPress 2.9.2 and some fixes</title>
		<link>http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/</link>
		<comments>http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 06:43:25 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[automatic upgrade]]></category>
		<category><![CDATA[find content directory]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[remove old plugin]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=712</guid>
		<description><![CDATA[After manually upgrading one of our client&#8217;s sites to WordPress 2.9.2. we noticed that the only thing that went awry was the automatic plugin upgrade. WP asked me for the FTP information, and then gave me this error message: Cannot find Content directory (WP-Content) The first solution I found suggested to make sure that all [...]]]></description>
			<content:encoded><![CDATA[<div>
<div>
<p>After manually upgrading one of our client&#8217;s sites to WordPress 2.9.2. we noticed that the only thing that went awry was the automatic plugin upgrade.</p>
<p>WP asked me for the FTP information, and then gave me this error message:</p>
<p><strong>Cannot find Content directory (WP-Content)</strong></p>
<p>The first solution I found suggested to make sure that all the necessary folders and files had a permission level of 755 or 777 (wp-content folder, plugin folder, upgrade folder) and to  add the following to the wp-config file as indicated by<a href="http://www.hui-wang.info/2009/06/unable-to-locate-wordpress-content-directory-wp-content/"> Hui Wang</a>:</p>
<div>
<div>
<blockquote><p>if(is_admin()) {<br />
add_filter(&#8216;filesystem_method&#8217;, create_function(&#8216;$a&#8217;, &#8216;return &#8220;direct&#8221;;&#8217; ));<br />
define( &#8216;FS_CHMOD_DIR&#8217;, 0751 );<br />
}</p></blockquote>
</div>
</div>
<p>But,  this caused the plugin list to show duplicate plugins &#8211; the older version and the upgraded version of the plugin. For some reason, it wasn&#8217;t deleting the old files.</p>
<p>Then, I tried deleting the code from the wp-config and trying again.  This time, I got a different error (don&#8217;t ask me why):</p>
<p><strong>Could not remove the old plugin</strong></p>
<p><strong>Plugin upgrade Failed</strong></p>
<p>So I found this<a href="http://wordpress.org/support/topic/266008"> fix from the Support Forum</a><strong> </strong>which seems to have fixed everything for now. <strong> </strong></p>
<div>
<div>
<div>
<div>
<blockquote><p>1. Make sure your wp-config.php file is chmodded to 0644.</p>
<p>2. Also make sure your .htaccess file is protecting the wp-config file using these lines:</p>
<p>&lt;Files wp-config.php&gt;<br />
order allow,deny<br />
deny from all<br />
&lt;/Files&gt;</p>
<p>3. Backup your wp-config.php file.</p>
<p>4. Edit your wp-config.php file putting these lines in underneath &lt;?php:</p>
<p>define(&#8216;FS_METHOD&#8217;, &#8216;ftpsockets&#8217;);<br />
define(&#8216;FTP_BASE&#8217;, &#8216;/path/to/wordpress/&#8217;);<br />
define(&#8216;FTP_CONTENT_DIR&#8217;, &#8216;/path/to/wordpress/wp-content/&#8217;);<br />
define(&#8216;FTP_PLUGIN_DIR &#8216;, &#8216;/path/to/wordpress/wp-content/plugins/&#8217;);<br />
define(&#8216;FTP_USER&#8217;, &#8216;username&#8217;);<br />
define(&#8216;FTP_PASS&#8217;, &#8216;password&#8217;);<br />
define(&#8216;FTP_HOST&#8217;, &#8216;<a href="http://ftp.example.org/" target="_blank">ftp.example.org</a>&#8216;);</p></blockquote>
<p>Crossing our fingers that the automatic upgrade to version 3.0 will go smoothly!</p>
</div>
</div>
</div>
</div>
</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/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;desc=%0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;t=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;link=http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/" 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=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;body=Link: http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;srcUrl=http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;srcTitle=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;snippet=%0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;summary=%0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio&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=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;url=http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&amp;selection=%0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/&amp;title=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/+&quot;Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes&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%2Fautomatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes%2F&amp;t=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes" 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=Automatic+Plugin+Upgrade+broken+after+WordPress+2.9.2+and+some+fixes+-++%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=%22Automatic%20Plugin%20Upgrade%20broken%20after%20WordPress%202.9.2%20and%20some%20fixes%22&amp;body=Link: http://wpgarage.com/code-snippets/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0AAfter%20manually%20upgrading%20one%20of%20our%20client%27s%20sites%20to%20WordPress%202.9.2.%20we%20noticed%20that%20the%20only%20thing%20that%20went%20awry%20was%20the%20automatic%20plugin%20upgrade.%0D%0A%0D%0AWP%20asked%20me%20for%20the%20FTP%20information%2C%20and%20then%20gave%20me%20this%20error%20message%3A%0D%0A%0D%0ACannot%20find%20Content%20directory%20%28WP-Content%29%0D%0A%0D%0AThe%20first%20solutio" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/" 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/automatic-plugin-upgrade-broken-after-wordpress-2-9-2-and-some-fixes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create an archive based on custom fields, not publish date in WordPress</title>
		<link>http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/</link>
		<comments>http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 13:06:11 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[publish dates]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=699</guid>
		<description><![CDATA[We recently launched a site called theforgottenletters.org, an incredible project dedicated to translating the Holocaust-era letters of Ralph Schwab from German to English. While building the site, we needed to archive the letters based on the dates the letters were written, not when we publish them to the site. First, I tried this tutorial: How [...]]]></description>
			<content:encoded><![CDATA[<p>We recently launched a site called <a href="http://theforgottenletters.org">theforgottenletters.org</a>, an incredible project dedicated to translating the Holocaust-era letters of Ralph Schwab from German to English. While building the site, we needed to archive the letters based on the dates the letters were written, not when we publish them to the site.</p>
<p>First, I tried this <a href="http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/">tu</a><a href="http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/">torial: How To Make a WordPress Events List</a> and <a href="http://wpgarage.com/plugins/wordpress-calendar-plugins/">calendar plugins</a>, but the tutorial wasn&#8217;t comprehensive enough and the plugins were too complex to start messing with.</p>
<p><strong>The solution</strong></p>
<p>I found this wonderful <a href="http://matth.eu/wordpress-date-field-plugin">date field plugin</a> which lets  you sort posts by the date entered in the custom fields.  Here&#8217;s what I did:</p>
<p>1. Upload the plugin and activate it</p>
<p>2. Opened the lettersarchive.php page template I created and added a query. The query checks for posts in the Letters category that have a date filled in and the orders it from oldest to newest.</p>
<p><strong>&lt;?php query_posts(&#8216;category_name=letters&amp;meta_key=date_value&amp;orderby=meta_value&amp;order=DESC&#8217;); ?&gt;</strong></p>
<p>3. I replaced a typical date function within the loop &lt;?php the_time(&#8216;j M Y&#8217;); ?&gt; with</p>
<p><strong>&lt;?php echo date(&#8220;l jS \of F Y&#8221;, get_post_meta($post-&gt;ID, &#8216;date_value&#8217;, true));?&gt;</strong></p>
<p>4. I created a new post,  assigned it to the Letters category, and selected a date from the date picker box that now appears below the editing box in the post area.<br />
<img class="alignnone size-full wp-image-701" title="adddateinfo" src="http://wpgarage.com/wp-content/uploads/2010/04/adddateinfo.png" alt="" width="309" height="120" /></p>
<p>I noticed that the Date Field plugin only lets you select a date up to 5 years ago  so I had to hack the plugin file on line 125 to  reflect selecting dates from 80 years ago.</p>
<p>for($currentyear = date(&#8216;Y&#8217;)<strong> &#8211; 80</strong>; $currentyear &lt;= date(Y) +5;$currentyear +=1)</p>
<p>Here&#8217;s a screenshot of the archive from <a href="http://theforgottenletters.org">The Forgotten Letters</a> site.</p>
<p><img class="alignnone size-full wp-image-702" title="lettersscreen" src="http://wpgarage.com/wp-content/uploads/2010/04/lettersscreen.png" alt="" width="250" height="191" /></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-16409</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/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;desc=We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;t=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;link=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-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+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;body=Link: http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;srcUrl=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;srcTitle=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;snippet=We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;summary=We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;url=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+in+WordPress&amp;selection=We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/&amp;title=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/+&quot;How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress%2F&amp;t=How+to+create+an+archive+based+on+custom+fields%2C+not+publish+date+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+create+an+archive+based+on+custom+fields%2C+not+publish+date+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%20create%20an%20archive%20based%20on%20custom%20fields%2C%20not%20publish%20date%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A We%20recently%20launched%20a%20site%20called%20theforgottenletters.org%2C%20an%20incredible%20project%20dedicated%20to%20translating%20the%20Holocaust-era%20letters%20of%20Ralph%20Schwab%20from%20German%20to%20English.%20While%20building%20the%20site%2C%20we%20needed%20to%20archive%20the%20letters%20based%20on%20the%20dates%20the%20letters%20were%20written%2C%20not%20when%20we%20publish%20them" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/code-snippets/how-to-create-an-archive-based-on-custom-fields-not-publish-date-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-create-an-archive-based-on-custom-fields-not-publish-date-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to list Pages with custom fields in 2 columns in WordPress</title>
		<link>http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-in-wordpress/</link>
		<comments>http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-in-wordpress/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 11:51:11 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[columns]]></category>
		<category><![CDATA[custom fields]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=695</guid>
		<description><![CDATA[Recently, I needed to list all subpages of a parent page.  I also needed to display custom fields below each subpage. And, on top of that, the list needed to be 2 columns. I found a solution for simply listing the pages in 2 columns, but it did not suggest how to modify the code [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I needed to list all subpages of a parent page.  I also needed to display custom fields below each subpage. And, on top of that, the list needed to be 2 columns.</p>
<p>I found a <a href="http://www.livexp.net/wordpress/display-list-of-wordpress-pages-in-two-columns.html">solution</a> for simply listing the pages in 2 columns, but it did not suggest how to modify the code to include custom fields.</p>
<p>So, thanks to our coding hero <a href="http://marksw.com/wordpress/">Mark Kaplun</a> who supplied the below code, although he admits it&#8217;s a &#8220;dirty hack&#8221;. The sort_column is so that MyPageOrder would work properly for this listing.</p>
<blockquote><p>&lt;?php<br />
$args = array(<br />
&#8216;post_type&#8217; =&gt; &#8216;page&#8217;,<br />
&#8216;numberposts&#8217; =&gt; 40,<br />
&#8216;sort_column&#8217; =&gt; &#8216;menu_order&#8217;,<br />
&#8216;child_of&#8217; =&gt; 84 // any parent<br />
);<br />
$attachments = get_pages($args);<br />
//print_r(&#8220;attachements:&#8221; . $attachements);<br />
echo &#8216;&lt;div style=&#8221;float: left; margin: 0 10px 0 0;&#8221;&gt;&#8217;;<br />
?&gt;</p>
<p>&lt;?php<br />
for ($i =0; $i&lt;count($attachments)/2; $i++) {<br />
$post = $attachments[$i];<br />
//    foreach ($attachments as $post)  { ?&gt;</p>
<p>&lt;a href=&#8221;&lt;?php echo get_permalink($post-&gt;ID) ?&gt;&#8221; rel=&#8221;bookmark&#8221;&gt;&lt;?php echo $post-&gt;post_title; ?&gt;&lt;/a&gt;<br />
&lt;?php if(get_post_meta($post-&gt;ID, &#8220;NameofCustomField&#8221;, true)) { ?&gt;<br />
&lt;?php<br />
echo get_post_meta($post-&gt;ID, &#8220;NameofCustomField&#8221;, true);<br />
}<br />
?&gt;<br />
&lt;?php } ?&gt;<br />
&lt;/div&gt;<br />
&lt;?php<br />
echo &#8216;&lt;div style=&#8221;float: left; margin: 0 10px 0 0;&#8221;&gt;&#8217;;<br />
for (; $i&lt;count($attachments); $i++) {<br />
$post = $attachments[$i];<br />
//    foreach ($attachments as $post)  { ?&gt;</p>
<p>&lt;a href=&#8221;&lt;?php echo get_permalink($post-&gt;ID) ?&gt;&#8221; rel=&#8221;bookmark&#8221;&gt;&lt;?php echo $post-&gt;post_title; ?&gt;&lt;/a&gt;<br />
&lt;?php if(get_post_meta($post-&gt;ID, &#8220;PracticeArea&#8221;, true)) { ?&gt;<br />
&lt;?php<br />
echo get_post_meta($post-&gt;ID, &#8220;PracticeArea&#8221;, true);<br />
}<br />
?&gt;<br />
&lt;?php } ?&gt;<br />
&lt;/div&gt;</p></blockquote>


<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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;desc=Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo" 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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;t=How+to+list+Pages+with+custom+fields+in+2+columns+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+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;link=http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-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+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;body=Link: http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo" 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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;srcUrl=http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;srcTitle=How+to+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;snippet=Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo" 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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;summary=Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo&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+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;url=http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+in+WordPress&amp;selection=Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo" 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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-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-list-pages-with-custom-fields-in-2-columns-in-wordpress/&amp;title=How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-in-wordpress/+&quot;How+to+list+Pages+with+custom+fields+in+2+columns+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-list-pages-with-custom-fields-in-2-columns-in-wordpress%2F&amp;t=How+to+list+Pages+with+custom+fields+in+2+columns+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+Pages+with+custom+fields+in+2+columns+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%20Pages%20with%20custom%20fields%20in%202%20columns%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/code-snippets/how-to-list-pages-with-custom-fields-in-2-columns-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Recently%2C%20I%20needed%20to%20list%20all%20subpages%20of%20a%20parent%20page.%C2%A0%20I%20also%20needed%20to%20display%20custom%20fields%20below%20each%20subpage.%20And%2C%20on%20top%20of%20that%2C%20the%20list%20needed%20to%20be%202%20columns.%0D%0A%0D%0AI%20found%20a%20solution%20for%20simply%20listing%20the%20pages%20in%202%20columns%2C%20but%20it%20did%20not%20suggest%20how%20to%20modify%20the%20code%20to%20include%20custo" 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-list-pages-with-custom-fields-in-2-columns-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-list-pages-with-custom-fields-in-2-columns-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to avoid &#8220;gwProxy&#8221; or &#8220;jsproxy&#8221; code in WordPress</title>
		<link>http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/</link>
		<comments>http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 11:31:06 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Shorties]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[gwproxy]]></category>
		<category><![CDATA[Highlighter]]></category>
		<category><![CDATA[jsproxy]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=683</guid>
		<description><![CDATA[While working on one of our sites, I noticed funny code starting to show up in the WYSIWYG editor area. I&#8217;m not sure if it actually messed anything up, but it was really annoying: &#60;input id=&#8221;gwProxy&#8221; type=&#8221;hidden&#8221; /&#62; &#60;input id=&#8221;jsProxy&#8221; onclick=&#8221;jsCall();&#8221; type=&#8221;hidden&#8221; /&#62; I found one article online that said it was an FCK / [...]]]></description>
			<content:encoded><![CDATA[<p>While working on one of our sites, I noticed funny code starting to show up in the WYSIWYG editor area. I&#8217;m not sure if it actually messed anything up, but it was really annoying:</p>
<p>&lt;input id=&#8221;gwProxy&#8221; type=&#8221;hidden&#8221; /&gt; &lt;input id=&#8221;jsProxy&#8221; onclick=&#8221;jsCall();&#8221; type=&#8221;hidden&#8221; /&gt;</p>
<p>I found one <a href="http://wordpress.org/support/topic/283854">article </a>online that said it was an FCK / wysiwyg editor problem so I thought maybe the issue was related to my beloved CMS friend, <a href="http://wordpress.org/extend/plugins/custom-field-template/"> Custom Field Template</a> plugin, that I have installed (and love&#8230; swoon.. too much?).</p>
<p>However, I was relieved to find this <a href="http://www.coolbuster.net/2009/05/gwproxy-code-legitimate-or-malicious.html">article</a> which said that the problem (freakishly enough) is the <a href="https://addons.mozilla.org/en-US/firefox/addon/791">Firefox Highlighter addon</a> which was adding the code into the WordPress WYSIWYG editor. So, I removed the Highlighter addon and that seemed to solve the problem. It didn&#8217;t remove previous instances of the weird code so I had to delete them manually.</p>
<p>I tried using the <a href="http://www.latentmotion.com/fck-firefox-fix/">FCK fix plugin</a>, hoping that it would remove previous instances of the weird code that were in the site, but it didn&#8217;t, so I deleted the plugin.</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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;desc=While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;t=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;link=http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-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+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;body=Link: http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;srcUrl=http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;srcTitle=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;snippet=While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;summary=While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;url=http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+in+WordPress&amp;selection=While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-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-avoid-gwproxy-or-jsproxy-code-in-wordpress/&amp;title=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-in-wordpress/+&quot;How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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-avoid-gwproxy-or-jsproxy-code-in-wordpress%2F&amp;t=How+to+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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+avoid+%22gwProxy%22+or+%22jsproxy%22+code+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%20avoid%20%22gwProxy%22%20or%20%22jsproxy%22%20code%20in%20WordPress%22&amp;body=Link: http://wpgarage.com/shorties/how-to-avoid-gwproxy-or-jsproxy-code-in-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20working%20on%20one%20of%20our%20sites%2C%20I%20noticed%20funny%20code%20starting%20to%20show%20up%20in%20the%20WYSIWYG%20editor%20area.%20I%27m%20not%20sure%20if%20it%20actually%20messed%20anything%20up%2C%20but%20it%20was%20really%20annoying%3A%0D%0A%0D%0A%26lt%3Binput%20id%3D%22gwProxy%22%20type%3D%22hidden%22%20%2F%26gt%3B%20%26lt%3Binput%20id%3D%22jsProxy%22%20onclick%3D%22jsCall%28%29%3B%22%20type%3D%22hidden%22%20%2F%26gt%3B%0D%0A%0D%0AI%20found%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/shorties/how-to-avoid-gwproxy-or-jsproxy-code-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-avoid-gwproxy-or-jsproxy-code-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</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>
	</channel>
</rss>
