<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WordPress Station</title>
	
	<link>http://wpstation.com</link>
	<description>A WordPress powered blog about, WordPress</description>
	<lastBuildDate>Fri, 15 Jan 2010 20:14:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WordpressStation" /><feedburner:info uri="wordpressstation" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
		<title>Conditional Tags: Page Templates</title>
		<link>http://wpstation.com/2010/wp-tips-and-tricks/conditional-tags-page-tempates/</link>
		<comments>http://wpstation.com/2010/wp-tips-and-tricks/conditional-tags-page-tempates/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 20:12:40 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[WP Tips and Tricks]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=821</guid>
		<description><![CDATA[What&#8217;s the old saying, &#8220;Learn something new every day?&#8221;  Working on customizing a theme for a client today, I was running into a bit of a tricky situation. The theme developer, for what ever reason, was using some php conditionals in the header to check to see if a page was the home page [...]]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s the old saying, &#8220;Learn something new every day?&#8221;  Working on customizing a theme for a client today, I was running into a bit of a tricky situation. The theme developer, for what ever reason, was using some php conditionals in the header to check to see if a page was the home page or not, and depending on the condition, he was inserting the CSS directly into the header and setting a background image on the container. Now why they didn&#8217;t simply use the same conditional and set a class and then use different background images in the style sheet  is beyond me, but time and budget didn&#8217;t dictate that I rewrite the whole thing to do it properly. So my first stab at resolving the issue was to use the <a href="http://codex.wordpress.org/Conditional_Tags" class="extlink">conditional tag</a> that I knew about, <code>is_page();</code>. I also knew that you could specify which page by ID or slug. However, in my situation, I had created several new page templates which didn&#8217;t need the background image, as it had a repeating strip for a faux column on a third sidebar. So I took a stab at the docs again on conditional tags, and lo and behold, since WP 2.5, you can now check if it is a page template with, wait for it, <code>if(is_page_template())</code>. Not only that, but you can specify a template by the file name, ie, <code>if(is_page_template('archives.php'))</code>. Wait, it gets better! You can also do an array of page templates, <code>if(is_page_template(array('archives.php','about.php','contact.php')))</code>. How awesome is that?</p>
<p>In my scenario, I simply wanted to check if it was any template besides the default template, so I was able to use <code>if(!is_page_template('page.php'))</code> and boom!, none of my page templates would get the faux column background.</p>
<p>Thinking about it, now I&#8217;m glad the theme designer took the backwards approach to the background image so that I could learn a new trick for the toolbox.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=821&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2010/wp-tips-and-tricks/conditional-tags-page-tempates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kitchen Chefs Theme</title>
		<link>http://wpstation.com/2009/themes/kitchen-chefs-theme/</link>
		<comments>http://wpstation.com/2009/themes/kitchen-chefs-theme/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 01:31:57 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[2-column]]></category>
		<category><![CDATA[broken]]></category>
		<category><![CDATA[chef]]></category>
		<category><![CDATA[kitchen]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=818</guid>
		<description><![CDATA[While doing a little volunteering at the WP support forums, someone came across a theme they liked but found it was broken.  Seems the site is using some kind of script to generate the zip file. Unfortunately, the script is b0rked, and was appending the parent directory and a forward slash to each template [...]]]></description>
			<content:encoded><![CDATA[<p>While doing a little volunteering at the WP support forums, someone came across a theme they liked but found it was broken.  Seems the site is using some kind of script to generate the zip file. Unfortunately, the script is b0rked, and was appending the parent directory and a forward slash to each template and image.  The user didn&#8217;t seem too familiar with WP themes, so I decided to use a little Mac utility, <a href="http://www.versiontracker.com/dyn/moreinfo/macosx/27090" class="extlink">Name Mangler</a> to clean up the files and figured here was as a good a place as any to allow them to download it from.</p>
<p>The <a href="http://www.leadcamp.com/content/2009/07/30/kitchen-chefs-cooking-free-wordpress-template-themes/" class="extlink">theme&#8217;s original home </a> requires registration to comment, otherwise I&#8217;d have added a link there.</p>
<p>Anyone else looking for the theme can<a href="http://wpstation.com/wp-content/downloads/kitchen_chefs_cooking_bue034.zip"> download it here.</a></p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=818&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/themes/kitchen-chefs-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More, Fresh, Free Themes</title>
		<link>http://wpstation.com/2009/themes/more-fresh-free-themes/</link>
		<comments>http://wpstation.com/2009/themes/more-fresh-free-themes/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 23:56:17 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[modern]]></category>
		<category><![CDATA[new]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=814</guid>
		<description><![CDATA[On the heals of the recent list over at Smashing Magazine, comes a list of &#8220;excellent, fresh, and free WordPress themes from The Design Mag.  Indeed, these themes aren&#8217;t your mother&#8217;s Kubrick.  The list provides a nice mix of styles.  There are ones that are lean heavily on graphic elements like big, [...]]]></description>
			<content:encoded><![CDATA[<p>On the heals of the <a href="http://wpstation.com/2009/themes/yet-another-list-of-free-themes/">recent list</a> over at Smashing Magazine, comes a list of <a href="http://thedesignmag.com/34-excellent-fresh-free-word-press-themes.html" class="extlink">&#8220;excellent, fresh, and free WordPress themes</a> from The Design Mag.  Indeed, these themes aren&#8217;t your mother&#8217;s Kubrick.  The list provides a nice mix of styles.  There are ones that are lean heavily on graphic elements like big, illustrated headers, the popular magazine style, as well as clean, typographic based designs.  There are also themes for multi-media oriented sites (podcasts/videos) as well as some designs that would make good designs for portfolios.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=814&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/themes/more-fresh-free-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perhaps, Finally an Identity</title>
		<link>http://wpstation.com/2009/site-news/perhaps-finally-an-identity/</link>
		<comments>http://wpstation.com/2009/site-news/perhaps-finally-an-identity/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 08:18:46 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=807</guid>
		<description><![CDATA[Maybe not an identity exactly, but four years in, I think I&#8217;ve come up with a logo idea that doesn&#8217;t quite suck.  One of my original theme&#8217;s header used a subway station of sorts, and that&#8217;s always been the general idea I wanted to convey, that WP Station was just a stop along the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://wpstation.com/wp-content/uploads/header_2006.jpg" alt="Header 2006" class="right" />Maybe not an identity exactly, but four years in, I think I&#8217;ve come up with a logo idea that doesn&#8217;t quite suck.  One of my original theme&#8217;s header used a subway station of sorts, and that&#8217;s always been the general idea I wanted to convey, that WP Station was just a stop along the WordPress network.  At the time, there weren&#8217;t many sites that focused on WordPress.  I can only recall <a href="http://webblogtoolscollection.com" class="extlink">Weblog Tools Collection</a>, and at the time, it wasn&#8217;t even WordPress specific.  I had only been using WP for a few months when I started the site, heck, I&#8217;d only discovered the world of blogging the year before.  I was beginning to collect links to themes and plugins, as well as keep up with updates and development  &#8211; this was long before wordpress.org/extend &#8211; and decided it might be useful to the community to share what I was finding.  </p>
<p>Over time, more sites started popping up doing the same, concentrating on getting subscribers, gaining in popularity, to the point I felt what I was doing was no longer useful.  Eventually, the official plugins section was added to wp.org, as well as the updates directly via the admin plugins page, making my type of posts moot.</p>
<p><img src="http://wpstation.com/wp-content/uploads/logo_transit_1.jpg" alt="logo" class="left" />Couple all of that with the explosion of development in the WP community, and I simply could not commit the time necessary to continue blogging in the same manner as before.  Life also began to get in the way, and the site slowly drifted into stagnation.  The reality though was by that point the site was generating enough money via various ads that I couldn&#8217;t pull the plug.  I was still using WP for work, and would occasionally post something I&#8217;d stumble across, thinking that I would start back blogging about WordPress.  However, my spare time was moving towards other interests.  Still, the revenue was enough to pay for those interests, so I kept the sign on.</p>
<p>Now that I&#8217;ve begun working with WPMU, and taking on a roll developing blog networks, I&#8217;m beginning to have a clearer vision of where I&#8217;m headed professionally, and where I&#8217;d like to take this blog. So once again, hopefully, WP Station will be a destination that WordPress travelers will find it to be a useful stop in their travels.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=807&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/site-news/perhaps-finally-an-identity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet Another List of Free Themes</title>
		<link>http://wpstation.com/2009/themes/yet-another-list-of-free-themes/</link>
		<comments>http://wpstation.com/2009/themes/yet-another-list-of-free-themes/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:12:52 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[modern]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=803</guid>
		<description><![CDATA[In case you&#8217;re not one of the quarter of a million people who subscribe to Smashing Magazine, they recently published a list of 40 high quality free WordPress themes.  I don&#8217;t mean to disparage the work of the theme developers listed in the post, but defining &#8220;high quality&#8221; seems a bit subjective.  And [...]]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;re not one of the quarter of a million people who subscribe to Smashing Magazine, they recently published a <a href="http://www.smashingmagazine.com/2009/11/12/40-free-high-quality-wordpress-themes/" class="extlink">list of 40 <em>high quality</em> free WordPress themes</a>.  I don&#8217;t mean to disparage the work of the theme developers listed in the post, but defining &#8220;high quality&#8221; seems a bit subjective.  And like most top (insert random number here) lists on the web these days, little effort is put into saying exactly <strong>why</strong> the author thinks the item is included.  Rather, a short blurb simply describing the item is given.  I&#8217;ve looked at many, many WP themes that aesthetically look <em>nice</em>, but one glance under the hood, and I run for the hills.</p>
<p>That said, as the author points out, finding free, modern, attractively designed  WordPress themes these days is becoming more and more difficult with the inundation of premium themes.  Which begets the ongoing, and sometimes heated debate of WordPress, GPL, and themes, which is the subject of another post for another day.</p>
<p>I did find a theme that potentially could be the base for a new look for this site, <a href="http://wellmedicated.com/themes/zinepress/" class="extlink"> ZinePress</a>.  I say a base, as the color scheme isn&#8217;t what I envision for this site, nor am I enamored with the the opacity of the footer background over the body background image, but as I point out in the intro, that&#8217;s a subjective opinion, not meant to take away from the overall quality of the design.  It also brings out the point that I&#8217;ve always thought that by using a &#8220;free&#8221; WordPress theme, it&#8217;s meant to be a starting point for a user to customize for their site, to their tastes, not something that you should necessarily use stock.  The whole &#8220;why recreate the wheel&#8221; thing.</p>
<p><em>EDIT</em> &#8211; heh, I looked closer at the post for ZinePress, and it was released over a year ago, so the list isn&#8217;t necessarily of recently released themes it seems.  Again, not to diminish the contributions of the theme authors who&#8217;ve generously shared their work.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=803&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/themes/yet-another-list-of-free-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Station Now on Twitter</title>
		<link>http://wpstation.com/2009/site-news/wordpress-station-now-on-twitter/</link>
		<comments>http://wpstation.com/2009/site-news/wordpress-station-now-on-twitter/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:31:31 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=800</guid>
		<description><![CDATA[A little late to the party, but I&#8217;ve set up WP Station on Twitter.  Not too active yet, however, but I&#8217;ll be working on following more WP devs and users, as I also work on a redesign and resurrection of WP Station.
If anyone is bored and wants to work up a logo for WP [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/wpstation" ><img src="http://wpstation.com/wp-content/uploads/twitter45.png" alt="Follow Me on Twitter" class="left"/></a>A little late to the party, but I&#8217;ve set up <a href="http://twitter.com/wpstation" class="extlink">WP Station on Twitter</a>.  Not too active yet, however, but I&#8217;ll be working on following more WP devs and users, as I also work on a redesign and resurrection of WP Station.</p>
<p>If anyone is bored and wants to work up a logo for WP Station, I might find some way of repaying you, albeit my budget is limited.  Certainly links and what not would be included.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=800&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/site-news/wordpress-station-now-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPlite-MU – Hide Menu Items in WPMU</title>
		<link>http://wpstation.com/2009/plugins/wplite-mu-hide-menu-items-in-wpmu/</link>
		<comments>http://wpstation.com/2009/plugins/wplite-mu-hide-menu-items-in-wpmu/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 20:50:34 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[WPlite]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=793</guid>
		<description><![CDATA[I&#8217;ve recently begun doing more and more work with WPMU, and one of the hurdles I&#8217;ve most encountered is that of customizing the Admin menus.  In the scenario I&#8217;m working in, clients are given the administrator role for their blog, however, in most scenarios, there are elements that they just don&#8217;t need to touch. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently begun doing more and more work with WPMU, and one of the hurdles I&#8217;ve most encountered is that of customizing the Admin menus.  In the scenario I&#8217;m working in, clients are given the administrator role for their blog, however, in most scenarios, there are elements that they just don&#8217;t need to touch.  D. Sader has an excellent <a href="http://wpmudev.org/project/Menus" class="extlink">Toggle Admin Menus</a> plugin that will cover most of the default Admin pages, however due to some limitations in how the dashboard is tied to widgets, you can&#8217;t hide that page from users with that plugin.  This is what set me off looking for such a plugin.</p>
<p>I discovered <a href="http://wplite.nanogeex.com" class="extlink">WPlite</a>, which at first glance looked exactly what I wanted.  However, due to different permissions issues with roles, it actually wouldn&#8217;t block anything for blog admins, which in my case I needed.  It also didn&#8217;t allow to hide itself, which would have defeated the sole purpose of the plugin.  So I did a quick change to hide the menu items from everyone except Site Admins, and allow the blocking of this plugins menu item as well.</p>
<p>As I point out in the Read Me file, this plugin does not physically prevent a user from accessing the page if they normally have permission, it simply hides it in the menu, so if you are using the <em>at a glance</em> widget and want to hide the widgets menu completely, you&#8217;ll need to customize this as well.  For more stricter control, definitely rely on D. Sader&#8217;s plugin, but unsuspecting users not familiar with WP, they will be none the wiser, and you can hide some of the other menu items that might normally appear for blog admins, or others roles for that matter.   Note, because I specifically was looking for a way to hide widgets, and didn&#8217;t see anything out of the box for Role Manager, I didn&#8217;t go that route.  For my needs, the combination of this and the Toggle Admin Menu&#8217;s I&#8217;m completely satisfied with the solution.</p>
<p>Also, currently this plugin must be uploaded to wp-content/plugins, and activated.  You can use the built in activate site wide, or use something like <a href="http://firestats.cc/wiki/WPMUPluginCommander" class="extlink">Plugin Commander</a> if you are looking for even more control over plugins.  Also, this currently requires a site by site configuration, as I wanted more granular control over which blog admins see what.  I will eventually look into setting some defaults, possibly via an admin interface, that would be set each time the plugin is active. If anyone wants to help contribute to that effort, I&#8217;m all ears.</p>
<p>Any questions or feedback for the WPMU version should be directed towards this post, Muhammad clearly pointed out he doesn&#8217;t have time to address the WPMU version.  I offered him the changes I had made if he wanted to release a WPMU version himself.  That said, all credit for the plugin goes to him, and if you find yourself wanting to donate anything to the development of the plugin, you should seek out the original plugin and show him some love.</p>
<p>This is my first attempt at releasing any kind of WPMU plugin, so certainly, any feedback or suggestions are greatly welcome.</p>
<p><a href="http://wpstation.com/wp-content/downloads/WPlite-MU.zip">Download WPlite-MU</a>.</p>
<p><strong>Update</strong> So I stumbled upon another plugin similar to WPlite that gives even greater control over customization, which seems to work quite well with WPMU, as you can hide items from Admins and Site Admins are not affected.  It still is a plugin that has to be configured on a site by site basis, but as I said, gives a far more granular control over many more elements.  I will continue to work on WPlite-MU once I get the current project I&#8217;m working on finished, but wanted to share my discovery until then.  You can check out the <a href="http://wordpress.org/extend/plugins/adminimize/" class="extlink">Adminimize</a> plugin at WordPress &#8211; Extend.  The author&#8217;s site is in German, but there are English instructions, and configuration is fairly straight forward for people familiar with WordPress.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=793&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/plugins/wplite-mu-hide-menu-items-in-wpmu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WPMU 2.8.5.2 Ready to Roll</title>
		<link>http://wpstation.com/2009/wordpress-mu/wpmu-2-8-5-2-ready-to-roll/</link>
		<comments>http://wpstation.com/2009/wordpress-mu/wpmu-2-8-5-2-ready-to-roll/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 09:14:38 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[WordPress MU]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=790</guid>
		<description><![CDATA[2.8.5 &#038; 2.8.5.1 were released yesterday, unfortunately a bug crept in that prevented non site admins from publishing posts.  However, Donncha quickly rectified the bug, and tagged the latest release version.  2.8.5 was dubbed a &#8220;hardening&#8221; release, and upgrading is recommended.  Donncha outlines the details.
I&#8217;ll also be releasing soon a WPMU version [...]]]></description>
			<content:encoded><![CDATA[<p>2.8.5 &#038; 2.8.5.1 were released yesterday, unfortunately a bug crept in that prevented non site admins from publishing posts.  However, Donncha quickly rectified the bug, and tagged the latest release version.  2.8.5 was dubbed a &#8220;hardening&#8221; release, and upgrading is recommended.  <a href="http://ocaoimh.ie/wordpress-mu-2851/" class="extlink">Donncha outlines the details</a>.</p>
<p>I&#8217;ll also be releasing soon a WPMU version of the <a href="http://wplite.nanogeex.com/" class="extlink">WPlite</a> plugin.  WPlite allows you to hide admin menu items from non-admin users, the modified version will hide menu items from blog admins, but not site admins.  It doesn&#8217;t lock down the page, the URL is still accessible, but for the unsuspecting user they&#8217;ll never know a setting is available to them.  For potentially destructive pages for inexperienced users you can use the<a href="http://wpmudev.org/project/Menus" class="extlink"> Toggle Admin Menus</a> plugin to secure blog admins from doing something they would regret (like delete their blog).</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=790&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/wordpress-mu/wpmu-2-8-5-2-ready-to-roll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crowd Sourcing Plugin Compatibility</title>
		<link>http://wpstation.com/2009/plugins/crowd-sourcing-plugin-compatibility/</link>
		<comments>http://wpstation.com/2009/plugins/crowd-sourcing-plugin-compatibility/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 16:13:31 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=785</guid>
		<description><![CDATA[Mark Jaquith posted on the WordPress blog about a new feature on wordpress.org, plugin compatibility a couple of days ago.  The idea behind it is simple, let the community give feedback on whether or not the latest version of a plugin works with the latest stable release of WordPress.  Mark points out that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://markjaquith.com/" class="extlink">Mark Jaquith</a> posted on the WordPress blog about a new feature on wordpress.org, <a href="http://wordpress.org/development/2009/10/plugin-compatibility-beta/" class="extlink">plugin compatibility</a> a couple of days ago.  The idea behind it is simple, let the community give feedback on whether or not the latest version of a plugin works with the latest stable release of WordPress.  Mark points out that the number one reason people don&#8217;t upgrade is because of plugin compatibility.  Considered one of WordPress&#8217;s greatest assests, it also can be it&#8217;s greatest drawback.  Sure, you can extend your site to do all kinds of amazing things, but what happens when that awesome plugin lingers without updates, while WordPress releases a couple times a year?  Eventually, something is going to break.  </p>
<p>Since WordPress has made the decision that security means staying up to date with the latest release, that becomes a greater issue as time goes by.  Potentially, this data will give developers insight into what is breaking popular plugins, so they can either address that in the code, or (purely speculation on my part) adopt the plugin and bring it up to date.  </p>
<p>My only concern with the data is that I think most people will tend to find plugins that are broken, and then report that, rather than think, &#8220;hey, I should go through my three hundred plugins and go report that they are working fine with the latest release.&#8221;  The article does mention that eventually they&#8217;d like users to be able to report directly from the plugin page,  but then that opens the whole &#8220;phone home&#8221; can of worms.</p>
<p>From a site developer stand point, I think the whole thing should drive home the point of trying to use the core tools as much as possible, and not relying on as many plugins to develop a site.  Certainly there are ones you can&#8217;t get away from for certain projects, but often times, people will employ a plugin for convenience, which will later bite them on the behind when that plugin breaks an upgrade.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=785&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/plugins/crowd-sourcing-plugin-compatibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relocation of WordPress Subversion Repository</title>
		<link>http://wpstation.com/2009/wp-tips-and-tricks/relocation-of-svn-repository/</link>
		<comments>http://wpstation.com/2009/wp-tips-and-tricks/relocation-of-svn-repository/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 15:31:40 +0000</pubDate>
		<dc:creator>Miklb</dc:creator>
				<category><![CDATA[WP Tips and Tricks]]></category>
		<category><![CDATA[repo]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[switching]]></category>
		<category><![CDATA[upgrading]]></category>

		<guid isPermaLink="false">http://wpstation.com/?p=781</guid>
		<description><![CDATA[While on the subject of upgrading, one of the best tips I could offer to someone is to install WordPress via Subversion.  I think most people think of using Subversion with trunk, or the &#8220;bleeding edge&#8221;.  Which can be the case, however, it&#8217;s just as easy to use a tag.  Previously, to [...]]]></description>
			<content:encoded><![CDATA[<p>While on the subject of upgrading, one of the best tips I could offer to someone is to install WordPress via Subversion.  I think most people think of using Subversion with trunk, or the <em>&#8220;bleeding edge&#8221;</em>.  Which can be the case, however, it&#8217;s just as easy to use a tag.  Previously, to check out any version of WordPress via SVN the repository URL was <code>http://svn.automattic.com/wordpress</code>.  This always rubbed me the wrong way, as I, like a lot of people, always cringed at the blurring of the line between .org and .com WP entities.  Having an automattic URL certainly blurred that line.</p>
<p>However, I noticed today that you can checkout from the .org URL now, specifically, <code>http://core.svn.wordpress.org</code>.  If you have been using SVN, and want to change repos, but aren&#8217;t familiar with that command, it&#8217;s actually quite simple.</p>
<p>Let&#8217;s say for example you last checked out the 2.8.3 tag, and want to both switch repos and update.  First you need to switch your repository</p>
<p><code>svn switch --relocate http://svn.automattic.com/wordpress/tags/2.8.3 http://core.svn.wordpress.org/tags/2.8.3</code>, then you simply need to switch to the latest tag, <code>svn switch http://core.svn.wordpress.org/tags/2.8.4</code></p>
<p>If anyone would like more information on how to do the initial checkout, including switching from a traditional installation to using SVN, please leave a comment and I&#8217;ll put together a post.</p>
<img src="http://wpstation.com/05092110/4a7d9e50/FeedBurner/1.0 (http://www.FeedBurner.com).gif" /><img src="http://wpstation.com/?ak_action=api_record_view&id=781&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wpstation.com/2009/wp-tips-and-tricks/relocation-of-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
