<?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>Causeblogs</title>
	<atom:link href="http://causeblogs.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://causeblogs.org</link>
	<description>Blogging made easy</description>
	<lastBuildDate>Tue, 21 May 2013 15:44:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Protecting WordPress from Dangerous Clients</title>
		<link>http://wpmu.org/how-to-disable-the-wordpress-plugin-and-theme-editor/</link>
		<comments>http://causeblogs.org/2013/05/21/protecting-wordpress-from-dangerous-clients/#comments</comments>
		<pubDate>Tue, 21 May 2013 15:44:05 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress constants]]></category>
		<category><![CDATA[wp-config.php]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/21/protecting-wordpress-from-dangerous-clients/</guid>
		<description><![CDATA[<p>“I know just enough to be dangerous.” One of the scariest things a developer can hear from a new client is the infamous claim: “I know just enough to be dangerous.” Translation: I don’t really know much but I sure love to tinker with things! This always puts up a little red flag in my [...]</p><p>The post <a href="http://causeblogs.org/2013/05/21/protecting-wordpress-from-dangerous-clients/">Protecting WordPress from Dangerous Clients</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
<li><a href='http://causeblogs.org/2013/03/13/preview-the-secret-new-wordpress-admin-design/' rel='bookmark' title='Preview The Secret New WordPress Admin Design'>Preview The Secret New WordPress Admin Design</a></li>
<li><a href='http://causeblogs.org/2013/04/10/ten-of-the-most-common-wordpress-problems-and-their-solutions/' rel='bookmark' title='Ten of the Most Common WordPress Problems and Their Solutions'>Ten of the Most Common WordPress Problems and Their Solutions</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<figure id="attachment_115414" class="wp-caption alignright wp-caption-right cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3 cgrid-col-right">
<div class="cgrid-col-wide-right"><a href="http://i0.wp.com/wpmu.org/wp-content/uploads/2013/05/tinkering.jpg" rel="lightbox[115382]" title="tinkering"><img class="size-ratio-3-2 wp-image-115414" title="tinkering" src="http://i1.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/tinkering.jpg?resize=448%2C333" alt="" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">“I know just enough to be dangerous.”</figcaption>
</div>
</div>
</figure>
<p>One of the scariest things a developer can hear from a new client is the infamous claim: <strong>“I know just enough to be dangerous.”</strong> Translation: <em>I don’t really know much but I sure love to tinker with things!</em> This always puts up a little red flag in my mind. However, a seemingly harmless bit of tinkering can have disastrous consequences on a live website.</p>
<p>Unfortunately, there are some clients out there who feel more confident <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> tinkering after they’ve hired a developer to assist with their site. Something gets broken and then the burden of fixing the website is on you. Want to prevent this scenario from happening? Here’s a quick fix:</p>
<h3>Disable the Plugin and Theme Editor</h3>
<p>Access to plugin and theme code is readily available in the WordPress dashboard. One thing you can do to protect the site from tinkering is to disable the both of these editors. You can do this in under a minute. Open your <em>wp-config.php</em> file and add the following constant:</p>
<div id="fvch-codeblock-0" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-0"><span class="php"><span class="php-function">define</span><span class="php-brackets">(</span><span class="php-string">'DISALLOW_FILE_EDIT'</span>,<span class="php-keyword">true</span><span class="php-brackets">)</span>;</span></pre>
</td>
</tr>
</table>
</div>
<p>Now, when you’re in the dashboard it is impossible to access the theme or plugin editor, even with the admin <a title="account" target="_blank" href="http://causeblogs.org/account/">account</a>.</p>
<p>Want to take it one step further? The <a href="http://codex.wordpress.org/Editing_wp-config.php#Disable_Plugin_and_Theme_Update_and_Installation" target="_blank">WordPress codex</a> has another gem for your <em>wp-config.php</em> file:</p>
<h3>Disable Plugin and Theme Update and Installation</h3>
<p>If you really want to lock things down, you can block users from installing/updating <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>and <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>through the dashboard. Add this quick snippet to your <em>wp-config.php</em> file:</p>
<div id="fvch-codeblock-1" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-1"><span class="php"><span class="php-function">define</span><span class="php-brackets">(</span><span class="php-string">'DISALLOW_FILE_MODS'</span>,<span class="php-keyword">true</span><span class="php-brackets">)</span>;</span></pre>
</td>
</tr>
</table>
</div>
<figure id="attachment_115417" class="wp-caption alignleft wp-caption-left cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3">
<div class="cgrid-col-wide-left"><a href="http://i2.wp.com/wpmu.org/wp-content/uploads/2013/05/oopsie.jpg" rel="lightbox[115382]" title="oopsie"><img class="size-ratio-3-2 wp-image-115417" title="oopsie" src="http://i0.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/oopsie.jpg?resize=448%2C298" alt="" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">I installed 75 new <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>yesterday and now my site is broken. Ooopsie!</figcaption>
</div>
</div>
</figure>
<p>Not only will it prevent users from installing and updating <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>and <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>, but it will also automatically disable theme and plugin editing in the dashboard. This constant essentially kills two birds with one stone and saves you from having to mop up a mess later on after your client decides to tinker around with this and that.</p>
<p>For example, let’s say your client decides to start installing <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>like a mad man, but one of them is poorly written, loads an extra copy of jQuery and breaks a bunch of Javascript on the site. Or maybe your client decides to upgrade WordPress before any of his critical <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>or theme have been updated. He ends up with a bunch of broken functionality. These are the types of troubleshooting scenarios we hope to avoid. The solution is to prevent it from happening in the first place by disabling theme and plugin updates.</p>
<p>One note of caution – You should only use these particular constants if you are your client’s sole developer with an agreement to maintain that site. Otherwise, you could be locking your client out of the freedoms that he needs to maintain his own site, should he choose a new developer. In most cases these healthy boundaries will help to keep your client safe from his predisposition to ill-advised and uninformed tinkering.</p>
<p>photo credit: <a href="http://www.flickr.com/photos/proimos/4199675334/">Alex E. Proimos</a> via <a href="http://photopin.com">photopin</a> <a href="http://creativecommons.org/licenses/by-nc/2.0/">cc</a></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/making-wordpress-easier-for-your-clients/' rel='bookmark' title='Making WordPress Easier for Your Clients'>Making WordPress Easier for Your Clients</a> <small>Do you work as a freelance WordPress developer? If your&#8230;</small></li>
<li><a href='http://wpmu.org/wordpress-foundation-trademark/' rel='bookmark' title='Isn’t it time the WordPress foundation started protecting the trademark in domain names? I think yes… and here’s how we can help!'>Isn’t it time the WordPress foundation started protecting the trademark in domain names? I think yes… and here’s how we can help!</a> <small>On September 9th 2010 the WordPress Foundation accepted the donation,&#8230;</small></li>
<li><a href='http://wpmu.org/remove-plugin-deactivation-wordpress/' rel='bookmark' title='Stop Your Clients From Deactivating Important WordPress Plugins'>Stop Your Clients From Deactivating Important WordPress Plugins</a> <small>Give your clients one less way to destroy their site&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/21/protecting-wordpress-from-dangerous-clients/">Protecting WordPress from Dangerous Clients</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
<li><a href='http://causeblogs.org/2013/03/13/preview-the-secret-new-wordpress-admin-design/' rel='bookmark' title='Preview The Secret New WordPress Admin Design'>Preview The Secret New WordPress Admin Design</a></li>
<li><a href='http://causeblogs.org/2013/04/10/ten-of-the-most-common-wordpress-problems-and-their-solutions/' rel='bookmark' title='Ten of the Most Common WordPress Problems and Their Solutions'>Ten of the Most Common WordPress Problems and Their Solutions</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/21/protecting-wordpress-from-dangerous-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something is Rotten in the State of WordPress</title>
		<link>http://wpmu.org/rotten-wordpress/</link>
		<comments>http://causeblogs.org/2013/05/21/something-is-rotten-in-the-state-of-wordpress/#comments</comments>
		<pubDate>Tue, 21 May 2013 15:43:50 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[matt mullenweg]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress news]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/21/something-is-rotten-in-the-state-of-wordpress/</guid>
		<description><![CDATA[<p>To the vast majority, WordPress is the poster-child of the open source world. With over 65 million sites worldwide, 52% of the top 100 blogs on the web and ~17% of the top million websites out there, it’s the ultimate tale of how a community driven project with a open source free-for-all GPL2 license can beat [...]</p><p>The post <a href="http://causeblogs.org/2013/05/21/something-is-rotten-in-the-state-of-wordpress/">Something is Rotten in the State of WordPress</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/' rel='bookmark' title='The WordPress Planet is Pants – and here’s how to improve it'>The WordPress Planet is Pants – and here’s how to improve it</a></li>
<li><a href='http://causeblogs.org/2013/03/13/preview-the-secret-new-wordpress-admin-design/' rel='bookmark' title='Preview The Secret New WordPress Admin Design'>Preview The Secret New WordPress Admin Design</a></li>
<li><a href='http://causeblogs.org/2013/04/19/security-alert-for-wordpress-users-2/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>To the vast majority, WordPress is the poster-child of the open source world.</p>
<p>With over <a href="http://en.wordpress.com/stats/">65 million</a> <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> worldwide, <a href="http://wpmu.org/top-blogs-use-wordpress-2013/">52% of the top 100 blogs on the web</a> and <a href="http://wpdaily.co/17-percent-top-1mm/">~17% of the top million websites out there</a>, it’s the ultimate tale of how a <a title="community " target="_blank" href="http://causeblogs.org/community-2/">community </a>driven project with a open source free-for-all GPL2 license can beat the big boys and take over the web.</p>
<p>It’s full of derring-do, us vs. them, the open internet versus the proprietary, and personal ownership vs. third party dependence – it’s a lesson in what happens if you ‘do the right thing’.</p>
<p>And at the heart of it there’s the true geek success story Matt Mullenweg, dropping out of college to work on the project he started while barely out of short trousers, who has gone on through founding <a href="http://automattic.com/">Automattic</a> to become ‘one of PC World’s Top 50 People on the Web, Inc.com’s 30 under 30, Business Week’s 25 Most Influential People on the Web, and Vanity Fair’s Next Establishment’, to quote from <a href="http://ma.tt/">his own site</a>.</p>
<figure id="attachment_115501" class="wp-caption alignnone wp-caption-supersize cgrid-row" style="width: 800px">
<div class="cgrid-col cgrid-col-span-full-wide"><img class="size-full wp-image-115501" title="mullenwegnoptbigbrother" src="http://i1.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/mullenwegnoptbigbrother1.jpg?resize=500%2C250" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Mullenweg looking in no way at all like big brother…</figcaption>
</div>
</figure>
<p>It is, without a doubt, Mullenweg who has driven and is responsible for the success of WordPress. Without the backing of Automattic (who contribute, via their staff, an immense amount of $s and hours to the project) and the consequent success of <a href="http://wordpress.com">WordPress.com</a>, which has allowed him the funds to start <a href="http://audrey.co/">Audrey Capital</a> to employ folk to work directly on the project, it’s almost inconceivable that WP would be where it’s at.</p>
<p>And boy, where is it at! I’d estimate that <strong>WordPress is now in a multi-billion dollar economy</strong>. In addition to Automattic (valued near Tumblr I’d guess) there’s <a href="http://envato.com">Envato</a> (can I tip them as Australia’s next billion $ IPO), a dozen or more highly successful theme companies (Woo, $100m anyone?), <a href="http://premium.wpmudev.org">ourselves</a> (we’re a 40 person team!) and many more… there are also tens of thousands of WordPress developers (<a href="https://www.elance.com/d/wd/wordpress">44.6k at elance alone</a>) and web development firms worldwide using WordPress.</p>
<p>Which is when things start to get serious, because we are talking thousands of peoples livelihoods here, we’re talking <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> the need for a level playing field, we’re talking <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> the danger of anti-competitive practices to that, and we’re especially talking <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> the danger of power, because you know what they say <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> power.</p>
<figure id="attachment_115497" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115497" title="power" src="http://i2.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/power.jpg?resize=500%2C250" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Power corrupts, absolute power…</figcaption>
</div>
</figure>
<p>WordPress itself is <a href="http://designisphilosophy.com/wordpress/who-owns-wordpress/">owned by ‘the community’</a>, but let’s not kid ourselves, this is no utopia, let’s see what happens if you try to fork WordPress, it won’t work, it’s not a realistic option and to suggest otherwise is ingenuous, the real power resides in <strong>WordPress.org, The WordPress Foundation and Automattic.</strong></p>
<p>And in full control of every one of these is Mullenweg, as <strong>Owner</strong>, <strong>President</strong> and <strong>Founder</strong> respectively. Able to dictate, to his liking and possible competitive advantage who can and can’t use the WordPress Trademark, what the policy of the Foundation is to non GPL providers, who is and isn’t allowed to present at or sponsor WordCamps, who can and can’t sell premium <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>on WordPress.com and let’s face it, pretty much anything that does or doesn’t go in the world of WordPress.</p>
<p>While at the same time <a href="http://www.wptavern.com/automattic-makes-second-investment-wpengine">investing himself</a> in WP companies (through Automattic), and competing directly (through, among over things <a href="http://akismet.com/">Akismet</a>, <a href="http://jetpack.me/">Jetpack</a>, <a href="http://videopress.com/">VideoPress</a>, <a href="http://vaultpress.com/">VaultPress</a>) in the marketplace he controls. In fact, Mullenweg even insists that WordPress hosts he deals with install Jetpack, and only Jetpack, by default with their one click WordPress installs, but that’s a post for another time.</p>
<p>Which let’s face it has been annoying enough (especially if you get <a href="http://wpmu.org/blacklisted-by-matt-wordpress/">on the wrong end of it</a>) and has even led the CEO of Envato to <a href="http://wpdaily.co/theme-clarity/">publicly stress about</a> “where Automattic ends and the Foundation begins” (respectfully, of course <img src='http://i2.wp.com/causeblogs.org/wp-includes/images/smilies/icon_wink.gif?w=500' alt=';)' class='wp-smiley' data-recalc-dims="1" />  but felt like <em>too much work and pain</em> to get upset <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a>, until today, when after quite a bit of pressure we also discovered that Mullenweg had done the ‘<a href="http://wpdaily.co/wptavern-oz/">ridiculous</a>‘ thing by<a href="http://www.wptavern.com/secrets-revealed-wltc-and-wptavern"> buying up leading WordPress news sites Weblog Tools Collection and WP Tavern</a>.</p>
<p>In order to:</p>
<blockquote><p>“reboot Tavern to be a “third place” for the WP <a title="community" target="_blank" href="http://causeblogs.org/community/">community</a> [and perhaps] roll Jeff’s (and anyone else who is interested) work into some official <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a> resource WP.org”</p>
</blockquote>
<p>Yep, that’s right, not content with owning every aspect of WordPress, Mullenweg also wants to control the Press, the discussion and the <a title="WordPress news" target="_blank" href="buddypress">WordPress news</a> market. I never thought he’d have the gumption, clearly I was wrong.</p>
<figure id="attachment_115499" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 800px">
<div class="cgrid-col cgrid-col-span-full"><img class=" wp-image-115499" title="wppravda" src="http://i1.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/wppravda.jpg?resize=500%2C77" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Yes, I even went as far as to <a title="register" target="_blank" href="http://causeblogs.org/account/register/">register</a> <a href="http://wppravda.com">http://wppravda.com</a> and redirect it to WP Tavern <img src='http://i2.wp.com/causeblogs.org/wp-includes/images/smilies/icon_smile.gif?w=500' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </figcaption>
</div>
</figure>
<p>Regardless of what Mullenweg has been saying <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> being ‘too busy’ <em>in the last few month</em>s to, for example, tweet that he had purchased the <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a>, or his chilled out attitude to what is happening to the site, new-member-of-staff Jeffro made <a href="http://www.wptavern.com/using-wptavern-to-share-your-knowledge-with-the-world">their intentions crystal clear</a> the other day, the all new Tavern is to be:</p>
<blockquote><p>“the second largest WordPress <a title="community " target="_blank" href="http://causeblogs.org/community-2/">community </a>of users and enthusiasts on the web.”</p>
</blockquote>
<p>That’s a pretty clear aim, that’s not a ‘oh-someone-else-talked-me-into-it-i-am-not-sure-really’ position, and I for one don’t buy it for a minute.</p>
<p>It’s yet another way in which Mullenweg can control, manage and manipulate WordPress, and something he’s already gone <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> by maintaining WP Tavern’s preferential treatment in the <a href="http://wpmu.org/wordpress-planet-pants-problem/">otherwise rubbish but insanely important Planet</a>.</p>
<p>It’s like Apple buying AppleInsider, Microsoft buying CNET, Google buying Wired… it’s crazy.</p>
<p>Now I’m sure he’ll set himself up as some sort of BBC style character, saying he’ll be impartial, independent and free… but isn’t that what they all say. And unfortunately I’m equally sure you won’t be seeing any coverage of, for example, <a href="http://premium.wpmudev.org/">WPMU DEV</a> or <a href="http://diythemes.com/">DIY Themes</a>, or anything but love for Automattic’s work. If one of my sources is correct, Mullenweg has a record of quite seriously interfering with at least one WP company he has invested in. I wonder how long it’ll be before that happens here… or if it even has to, after all I’d be tentative <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> bagging out my boss in public, wouldn’t you?</p>
<p>It’s too much, it’s one step too far, it’s megalomania and micromanagement bundled up in one. It’s an anti-competitive, anti-trust, conflict-of-interest nightmare waiting to happen and an invitation to corruption on an epic scale.</p>
<p>Mullenweg should probably not be as involved as he is in every aspect of WordPress, as long as he also stands to make a fortune out of so many aspects of it, and he should definitely not be in the <a title="WordPress news" target="_blank" href="buddypress">WordPress news</a> and <a title="community " target="_blank" href="http://causeblogs.org/community-2/">community </a>space.</p>
<p>After all, as he’s too busy to tweet for months <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> buying up WP <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a> <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a>, I don’t see how he could have time for this…</p>
<dl id="attachment_115494" class="wp-caption alignnone cgrid-col-span-full" style="width: 800px">
<dt class="wp-caption-dt"></dt>
</dl>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/daily-tip-state-of-the-word-2011-video-now-available/' rel='bookmark' title='State of the Word 2011 Video Now Available'>State of the Word 2011 Video Now Available</a> <small>Matt addresses the WordPress <a title="community " target="_blank" href="http://causeblogs.org/community-2/">community </a><a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> the state of WordPress&#8230;</small></li>
<li><a href='http://wpmu.org/state-of-the-word-2012/' rel='bookmark' title='State of the Word 2012 – Where WordPress Has Been and Where It’s Going'>State of the Word 2012 – Where WordPress Has Been and Where It’s Going</a> <small>See what WordPress founder Matt Mullenweg has to say <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a>&#8230;</small></li>
<li><a href='http://wpmu.org/put-wordpress-in-a-read-only-state-with-code-freeze/' rel='bookmark' title='Put WordPress in a Read-Only State with Code Freeze'>Put WordPress in a Read-Only State with Code Freeze</a> <small>This new plugin temporarily puts your WordPress site into a&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/21/something-is-rotten-in-the-state-of-wordpress/">Something is Rotten in the State of WordPress</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/' rel='bookmark' title='The WordPress Planet is Pants – and here’s how to improve it'>The WordPress Planet is Pants – and here’s how to improve it</a></li>
<li><a href='http://causeblogs.org/2013/03/13/preview-the-secret-new-wordpress-admin-design/' rel='bookmark' title='Preview The Secret New WordPress Admin Design'>Preview The Secret New WordPress Admin Design</a></li>
<li><a href='http://causeblogs.org/2013/04/19/security-alert-for-wordpress-users-2/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/21/something-is-rotten-in-the-state-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The All New Post Formats in WordPress 3.6</title>
		<link>http://wpmu.org/the-all-new-post-formats/</link>
		<comments>http://causeblogs.org/2013/05/21/the-all-new-post-formats-in-wordpress-3-6/#comments</comments>
		<pubDate>Tue, 21 May 2013 15:43:18 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[post formats]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/21/the-all-new-post-formats-in-wordpress-3-6/</guid>
		<description><![CDATA[<p>Post formats are set to get a major shake up in version 3.6 of WordPress. And it will be hard to miss them – post formats will be smack bang above the editor, all in a neat row of large icons. The shiny new post formats that will be part of WordPress 3.6. Since 3.1, [...]</p><p>The post <a href="http://causeblogs.org/2013/05/21/the-all-new-post-formats-in-wordpress-3-6/">The All New Post Formats in WordPress 3.6</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/10/tumblogging-with-wordpress-themes-post-formats-and-more/' rel='bookmark' title='Tumblogging With WordPress: Themes, Post Formats, and More!'>Tumblogging With WordPress: Themes, Post Formats, and More!</a></li>
<li><a href='http://causeblogs.org/2013/05/02/the-most-exciting-feature-of-wordpress-3-6-native-audio-and-video-support/' rel='bookmark' title='The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support'>The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support</a></li>
<li><a href='http://causeblogs.org/2013/05/02/the-most-exciting-feature-of-wordpress-3-6-native-audio-and-video-support-2/' rel='bookmark' title='The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support'>The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Post formats are set to get a <strong>major shake up</strong> in version 3.6 of WordPress.</p>
<p>And it will be hard to miss them – post formats will be smack bang above the editor, all in a neat row of large icons.</p>
<figure id="attachment_115436" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115436" title="post formats" src="http://i0.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/post-formats.png?resize=500%2C187" alt="Post formats" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">The shiny new post formats that will be part of WordPress 3.6.</figcaption>
</div>
</figure>
<p>Since 3.1, post formats have been a theme feature that allow users to add context to what they post – beautiful photos can be posted as an “image”, a quotation you’ve stumbled across on a site can be posted as a “quote”, a film clip you’ve put together on your smart phone can be posted as a “video”..</p>
<p>Essentially, post formats are a piece of meta information can can be used by a theme to customize how a post looks. Using a theme that <a title="support " target="_blank" href="http://causeblogs.org/help-support/">support </a>port formats, users can change how each post looks by choosing a post format.</p>
<figure id="attachment_115432" class="wp-caption alignright wp-caption-right cgrid-row" style="width: 312px">
<div class="cgrid-col cgrid-col-span-2 cgrid-col-right">
<div class="cgrid-col-wide-right"><img class="size-ratio-2-3 wp-image-115432" title="post-formats-old" src="http://i2.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/post-formats-old.png?resize=312%2C244" alt="Post formats" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">The post formats selection box looks a bit boring.</figcaption>
</div>
</div>
</figure>
<p>The “Format” box in the current version is not all that inspiring – it’s a small, flat-looking menu of radio buttons. Blink and you will miss them underneath the “Publish” button.</p>
<p>There are now 10 different post types for users to choose from:</p>
<ul>
<li><strong>Standard</strong> – Just your typical post.</li>
<li><strong>Image</strong> – A single image. You can either upload an image or enter an URL.</li>
<li><strong><a title="Gallery" target="_blank" href="http://causeblogs.org/gallery-2/">Gallery</a></strong> – A series of images.</li>
<li><strong>Link</strong> – A link to another website.</li>
<li><strong>Video</strong> – A single video. You can upload a video or enter a video embed code or URL.</li>
<li><strong>Audio</strong> – An audio file. Upload a file or paste an audio embed code into the box.</li>
<li><strong>Chat</strong> – A chat transcript. Just copy and paste it into the editor.</li>
<li><strong>Status</strong> – Much like Facebook or Twitter, a short status update.</li>
<li><strong>Quote</strong> – A quotation.</li>
<li><strong>Aside</strong> – A quick thought or idea.</li>
</ul>
<div></div>
<p>When you click on each post type, rather than a pop-up opening where you can insert a link or image, the UI changes and provides you options. For example, when you want to add audio, the UI will shift to allow you to enter an audio embed code or select audio from your media library.</p>
<figure id="attachment_115448" class="wp-caption alignright wp-caption-right cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3 cgrid-col-right">
<div class="cgrid-col-wide-right"><img class="size-ratio-3-2 wp-image-115448" title="wordpress-post-types-new" src="http://i0.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/wordpress-post-types-new.png?resize=448%2C244" alt="WordPress Post Types in 3.6" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Publishing with the new post formats is easy peasy.</figcaption>
</div>
</div>
</figure>
<p>The biggest change is that now users will have to make a decision <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> what kind of post they want to publish <strong>before</strong> they choose a post format, whereas in the past post formats were more of an after thought.</p>
<p>With the new post formats in 3.6, it will be easier than ever to quickly post videos of <a title="Ryan Gosling Not Eating His Cereal" href="http://www.buzzfeed.com/mjs538/ryan-gosling-wont-eat-his-cereal-is-basically-the-best-thing" target="_blank">Ryan Gosling not wanting to eat this cereal</a>!</p>
<h3>Now Where Have We Seen This Before…?</h3>
<p>The new post formats in WordPress are a lot like those in Tumblr.</p>
<p>When you login to Tumblr the first thing you see is the colorful post formats banner at the top of the page.</p>
<figure id="attachment_115445" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115445" title="tumblr-post-formats" src="http://i1.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/tumblr-post-formats2.png?resize=500%2C139" alt="Tumblr post formats" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Tumblr’s colorful post formats are super easy to use.</figcaption>
</div>
</figure>
<p>The stripped back icons are clear and intuitive to use (just click the post format you want to use and the UI changes so you can insert your images/post/video etc, similar to the new WordPress post formats).</p>
<figure id="attachment_115462" class="wp-caption alignleft wp-caption-left cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3">
<div class="cgrid-col-wide-left"><img class="size-ratio-3-2 wp-image-115462" title="video-post-format" src="http://i1.wp.com/jacquesag.causeblogs.org/wp-content/uploads/2013/05/video-post-format.png?resize=448%2C319" alt="It's easy to drag and drop a video into Tumblr to upload as a post." data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">It’s easy to drag and drop a video into Tumblr to upload as a post.</figcaption>
</div>
</div>
</figure>
<p>It’s no wonder WordPress is also wandering down this path, as Matt Mullenweg has previously said, he wants to “eradicate some of the complexity that WordPress is usually associated with.”</p>
<p>So is WordPress turning into Tumblr? Well, yes and no… The dashboard is still available and sidebar is still on hand in addition to the post formats banner. The popularity of Tumblr just goes to show how interface simplification is important in the blogging market and WordPress is acknowledging that by borrowing similar post format <a title="features" target="_blank" href="http://causeblogs.org/features/">features</a> from Tumblr.</p>
<div><strong>What do you think of the new post formats?</strong></div>
<div></div>
<p>Credits: <a id="yui_3_7_3_3_1369034606463_946" href="http://www.flickr.com/photos/huangjiahui/">huangjiahui</a></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/post-formats-tumblog-and-content-separation-by-jeffrey-pearce/' rel='bookmark' title='Post Formats, Tumblog, and Content Separation by Jeffrey Pearce'>Post Formats, Tumblog, and Content Separation by Jeffrey Pearce</a> <small>Jeffrey Pearce is a developer who focuses on PHP and&#8230;</small></li>
<li><a href='http://wpmu.org/wordpress-3-1-post-formats-reference-by-lisa-sabin-wilson/' rel='bookmark' title='WordPress 3.1 Post Formats Reference by Lisa Sabin-Wilson'>WordPress 3.1 Post Formats Reference by Lisa Sabin-Wilson</a> <small>Today is the first post in our 12 Days of&#8230;</small></li>
<li><a href='http://wpmu.org/twenty-eleven-post-formats-what-are-they-and-why-should-i-care/' rel='bookmark' title='Twenty Eleven Post Formats – What Are They and Why Should I Care?'>Twenty Eleven Post Formats – What Are They and Why Should I Care?</a> <small>This week I’m going to be hanging around inside WordPress&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/21/the-all-new-post-formats-in-wordpress-3-6/">The All New Post Formats in WordPress 3.6</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/10/tumblogging-with-wordpress-themes-post-formats-and-more/' rel='bookmark' title='Tumblogging With WordPress: Themes, Post Formats, and More!'>Tumblogging With WordPress: Themes, Post Formats, and More!</a></li>
<li><a href='http://causeblogs.org/2013/05/02/the-most-exciting-feature-of-wordpress-3-6-native-audio-and-video-support/' rel='bookmark' title='The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support'>The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support</a></li>
<li><a href='http://causeblogs.org/2013/05/02/the-most-exciting-feature-of-wordpress-3-6-native-audio-and-video-support-2/' rel='bookmark' title='The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support'>The Most Exciting Feature of WordPress 3.6: Native Audio and Video Support</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/21/the-all-new-post-formats-in-wordpress-3-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don’t Fall Prey to Hackers With This Super Secure Tip</title>
		<link>http://wpmu.org/wordpress-force-strong-passwords/</link>
		<comments>http://causeblogs.org/2013/05/20/dont-fall-prey-to-hackers-with-this-super-secure-tip/#comments</comments>
		<pubDate>Mon, 20 May 2013 15:34:01 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/20/dont-fall-prey-to-hackers-with-this-super-secure-tip/</guid>
		<description><![CDATA[<p>As the WordPress platform becomes more and more popular, it also becomes a more popular target for hackers, like the surge in attacks that took place just a month ago. Of course there are a number of very basic things you can do to help protect yourself: Always update to the latest version of WordPress [...]</p><p>The post <a href="http://causeblogs.org/2013/05/20/dont-fall-prey-to-hackers-with-this-super-secure-tip/">Don’t Fall Prey to Hackers With This Super Secure Tip</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/19/security-alert-for-wordpress-users-2/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
<li><a href='http://causeblogs.org/2013/04/21/security-alert-for-wordpress-users/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
<li><a href='http://causeblogs.org/2013/03/13/stripe-payments-for-wordpress-no-ssl-certificate-required/' rel='bookmark' title='Stripe Payments For WordPress – No SSL Certificate Required'>Stripe Payments For WordPress – No SSL Certificate Required</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>As the WordPress platform becomes more and more popular, it also becomes a more popular target for hackers, like the <a href="http://wpmu.org/security-alert-for-wordpress-users/">surge in attacks</a> that took place just a month ago.</p>
<p>Of course there are a number of very basic things you can do to help protect yourself:</p>
<ul>
<li>Always update to the latest version of WordPress</li>
<li>Keep your theme(s) updated</li>
<li>Keep your <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>updated</li>
<li>Don’t use “Admin” as your administrator login</li>
<li>Use strong passwords</li>
</ul>
<p>All of those suggestions are well within your control, of course. But there’s one situation that can throw a wrench into that control. If you have others registering on your site, then they can chose to change their password to one of their own.</p>
<h2><strong>Use a Plugin to Force Strong Passwords</strong></h2>
<p>In order to address this situation, you can use a plugin such as the <a href="http://wordpress.org/plugins/enforce-strong-password/">Enforce Strong Password</a> plugin.</p>
<p>There aren’t a lot of controls – just the ability to choose the required password strength between 1 and 4. The default is set to 4, and so if that’s good with you, you don’t have to touch anything.</p>
<p>If a user attempts to update their password with one that isn’t strong enough for the plugin, it shows the following message:</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-ratio-large wp-image-115400" title="enforce-strong-password" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/enforce-strong-password.jpg?resize=500%2C276" alt="" data-recalc-dims="1" /></div>
</div>
<p>If you would like require stronger passwords for only those with a user level of Author and above, then the <a href="http://wordpress.org/plugins/force-strong-passwords/">Force Strong Passwords</a> plugin will do the trick.</p>
<p>Photo: <a href="http://www.bigstockphoto.com/image-12492731/stock-photo-login-password" target="_blank">login password</a> from BigStockPhoto</p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/apocalypse-meow-protects-your-wordpress-site-from-hackers/' rel='bookmark' title='Apocalypse Meow Protects Your WordPress Site From Hackers'>Apocalypse Meow Protects Your WordPress Site From Hackers</a> <small>Here&#8217;s a quick tip to help you protect your WordPress&#8230;</small></li>
<li><a href='http://wpmu.org/secure-all-wordpress-logins-with-https-even-if-you-dont-have-your-own-ssl-certificate/' rel='bookmark' title='Secure all WordPress logins with HTTPS even if you don’t have your own SSL certificate'>Secure all WordPress logins with HTTPS even if you don’t have your own SSL certificate</a> <small>A plugin that allows you to force all WordPress logins&#8230;</small></li>
<li><a href='http://wpmu.org/3-sneaky-tricks-hackers-use-to-target-wordpress-sites/' rel='bookmark' title='3 Sneaky Tricks Hackers Use to Target WordPress Sites'>3 Sneaky Tricks Hackers Use to Target WordPress Sites</a> <small>If you want to keep hackers from hijacking your WordPress&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/20/dont-fall-prey-to-hackers-with-this-super-secure-tip/">Don’t Fall Prey to Hackers With This Super Secure Tip</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/19/security-alert-for-wordpress-users-2/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
<li><a href='http://causeblogs.org/2013/04/21/security-alert-for-wordpress-users/' rel='bookmark' title='Security Alert for WordPress Users!'>Security Alert for WordPress Users!</a></li>
<li><a href='http://causeblogs.org/2013/03/13/stripe-payments-for-wordpress-no-ssl-certificate-required/' rel='bookmark' title='Stripe Payments For WordPress – No SSL Certificate Required'>Stripe Payments For WordPress – No SSL Certificate Required</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/20/dont-fall-prey-to-hackers-with-this-super-secure-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MailChimp Killer? WPMU DEV’s new WordPress email newsletter plugin does it all!</title>
		<link>http://wpmu.org/brilliant-wordpress-email-newsletter-plugin/</link>
		<comments>http://causeblogs.org/2013/05/17/mailchimp-killer-wpmu-devs-new-wordpress-email-newsletter-plugin-does-it-all/#comments</comments>
		<pubDate>Fri, 17 May 2013 14:58:28 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email newsletter]]></category>
		<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[newsletter subscription plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress newsletter manager]]></category>
		<category><![CDATA[wordpress newsletter plugin]]></category>
		<category><![CDATA[WPMU DEV]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/17/mailchimp-killer-wpmu-devs-new-wordpress-email-newsletter-plugin-does-it-all/</guid>
		<description><![CDATA[<p>We’ve been in the business of releasing WordPress email plugins for a while now, but nothing comes close to this… introducing the all new e-Newsletter, we think you are going to love it. We’ve put everything we can into this to provide you with a truly professional email newsletter setup, including pretty much everything you [...]</p><p>The post <a href="http://causeblogs.org/2013/05/17/mailchimp-killer-wpmu-devs-new-wordpress-email-newsletter-plugin-does-it-all/">MailChimp Killer? WPMU DEV’s new WordPress email newsletter plugin does it all!</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/03/26/make-wordpress-emails-pretty-and-responsive-with-wpmudevs-new-plugin/' rel='bookmark' title='Make WordPress Emails Pretty and Responsive With WPMUDEV’s New Plugin!'>Make WordPress Emails Pretty and Responsive With WPMUDEV’s New Plugin!</a></li>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
<li><a href='http://causeblogs.org/2012/10/02/protect-your-wordpress-blog-with-this-wordpress-antimalware-plugin/' rel='bookmark' title='Protect Your WordPress Blog with WordPress AntiMalware Plugin'>Protect Your WordPress Blog with WordPress AntiMalware Plugin</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>We’ve been in the business of releasing WordPress email <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>for a while now, but nothing comes close to this… <a href="http://premium.wpmudev.org/project/e-newsletter/">introducing the all new e-Newsletter</a>, we think you are going to love it.</p>
</p>
<p>We’ve put everything we can into this to provide you with a truly professional email newsletter setup, including pretty much everything you could require:</p>
<ul>
<li>Super easy setup and configuration</li>
<li>Beautiful, fully customizable templates</li>
<li>Along with a great template builder</li>
<li>Powerful user management (including import)</li>
<li>User <a title="groups" target="_blank" href="http://causeblogs.org/groups/">groups</a> &amp; group management</li>
<li>Detailed informative reports</li>
<li>Cracking widget interface and behavior</li>
<li>SMTP much improved</li>
<li>Add user data to newsletters</li>
<li>Display emails in browser</li>
<li>Shortcodes galore</li>
<li>New hooks to integrate with other <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a></li>
<li>And much, much more</li>
<li>With amazing <a title="support " target="_blank" href="http://causeblogs.org/help-support/">support </a>and usage docs, if you need them</li>
</ul>
<p>And of course as it’s a WPMU DEV plugin it’s guaranteed to work, guaranteed to be updated and comes with guaranteed <a title="support" target="_blank" href="http://causeblogs.org/support/">support</a>.</p>
<p>Not bad huh <img src='http://i1.wp.com/causeblogs.org/wp-includes/images/smilies/icon_smile.gif?w=500' alt=':)' class='wp-smiley' data-recalc-dims="1" />  Let’s take a look under the hood…</p>
<p>The template builder is just like editing a theme in WordPress, in fact it’s identical <img src='http://i1.wp.com/causeblogs.org/wp-includes/images/smilies/icon_smile.gif?w=500' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </p>
<figure id="attachment_115348" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115348" title="newsletter-builder-700px" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/newsletter-builder-700px.jpg?resize=500%2C436" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Couldn’t be easier to build an email template, right in WordPress</figcaption>
</div>
</figure>
<p>And of course the plugin comes with a bunch of pre-built, gorgeous templates for you pleasure, for example:</p>
<figure id="attachment_115349" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115349" title="light-template-700px" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/light-template-700px.jpg?resize=500%2C499" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">A nice clean minimal template</figcaption>
</div>
</figure>
<dl id="attachment_115335" class="wp-caption alignnone cgrid-col-span-full" style="width: 559px">
<dt class="wp-caption-dt"></dt>
</dl>
<figure id="attachment_115350" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115350" title="dark-template-700px" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/dark-template-700px.jpg?resize=500%2C499" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">A dark background, for you hackers out there <img src='http://i2.wp.com/causeblogs.org/wp-includes/images/smilies/icon_wink.gif?w=500' alt=';)' class='wp-smiley' data-recalc-dims="1" /> </figcaption>
</div>
</figure>
<p>And here’s one of my personal favorite <a title="features" target="_blank" href="http://causeblogs.org/features/">features</a>, adding and managing users and <a title="groups" target="_blank" href="http://causeblogs.org/groups/">groups</a>:</p>
<figure id="attachment_115351" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115351" title="members-700px" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/members-700px.jpg?resize=500%2C306" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Easily add and manage and import individual and batches of email</figcaption>
</div>
</figure>
<dl id="attachment_115337" class="wp-caption alignnone cgrid-col-span-full" style="width: 559px">
<dt class="wp-caption-dt"><span style="color: #04243d;font-size: 16px"><br />
And of course logged in users (for example, on Multisite or BuddyPress installations) can easily manage their email <a title="subscriptions" target="_blank" href="http://causeblogs.org/community-2/subscriptions/">subscriptions</a> via the widget, yum:<br />
</span></dt>
</dl>
<figure id="attachment_115352" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><img class="size-ratio-large wp-image-115352" title="widget-700px" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/widget-700px.jpg?resize=500%2C228" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">Users can easily manage their <a title="subscriptions" target="_blank" href="http://causeblogs.org/community-2/subscriptions/">subscriptions</a></figcaption>
</div>
</figure>
<dl id="attachment_115338" class="wp-caption alignnone cgrid-col-span-full" style="width: 559px">
<dt class="wp-caption-dt"></dt>
</dl>
<p>And there is so, so much more… in fact here’s that video again if you missed it the first time round, 60 seconds and you’ll be convinced.</p>
</p>
<p>We’ve been working on email functionality for WordPress for years, for example there’s <a href="http://premium.wpmudev.org/project/subscribe-by-email/">Subscribe by Email</a>, <a href="http://premium.wpmudev.org/project/mass-email-sender/">Mass Email</a> (old skool MU!), <a href="http://premium.wpmudev.org/project/buddypress-group-email/">BuddyPress Group Email</a> and <a href="http://premium.wpmudev.org/project/automatic-follow-up-emails-for-new-users/">Automessage (drip email)</a>, but we reckon this is the best of the lot, by a long way.</p>
<p><a href="http://premium.wpmudev.org/project/e-newsletter/">Download e-Newsletter here</a>, woohoo!</p>
<p><em>Photo credit: <a href="http://www.flickr.com/photos/good_day/19705415/">Today is a good day</a></em></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/mailchimp-email-newsletter-wordpress-mu-integration/' rel='bookmark' title='MailChimp email newsletter WordPress MU integration!'>MailChimp email newsletter WordPress MU integration!</a> <small>Did you get our Useful WPMU Links newsletter? If so,&#8230;</small></li>
<li><a href='http://wpmu.org/aweber-vs-mailchimp/' rel='bookmark' title='Aweber vs. Mailchimp: Which is the Best Email Newsletter Service?'>Aweber vs. Mailchimp: Which is the Best Email Newsletter Service?</a> <small>Comparing the two most popular email building services and seeing&#8230;</small></li>
<li><a href='http://wpmu.org/send-html-emails-with-wordpress-and-the-e-newsletter-plugin/' rel='bookmark' title='Send HTML Emails with WordPress and the e-Newsletter Plugin'>Send HTML Emails with WordPress and the e-Newsletter Plugin</a> <small>We’re very excited to introduce our brand new <a title="e-Newsletter plugin" target="_blank" href="http://causeblogs.org/e-newsletter-plugin/">e-Newsletter plugin</a>&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/17/mailchimp-killer-wpmu-devs-new-wordpress-email-newsletter-plugin-does-it-all/">MailChimp Killer? WPMU DEV’s new WordPress email newsletter plugin does it all!</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/03/26/make-wordpress-emails-pretty-and-responsive-with-wpmudevs-new-plugin/' rel='bookmark' title='Make WordPress Emails Pretty and Responsive With WPMUDEV’s New Plugin!'>Make WordPress Emails Pretty and Responsive With WPMUDEV’s New Plugin!</a></li>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
<li><a href='http://causeblogs.org/2012/10/02/protect-your-wordpress-blog-with-this-wordpress-antimalware-plugin/' rel='bookmark' title='Protect Your WordPress Blog with WordPress AntiMalware Plugin'>Protect Your WordPress Blog with WordPress AntiMalware Plugin</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/17/mailchimp-killer-wpmu-devs-new-wordpress-email-newsletter-plugin-does-it-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge WordPress Tags Easily and Quickly for a Leaner, Better Site</title>
		<link>http://wpmu.org/merge-wordpress-tags/</link>
		<comments>http://causeblogs.org/2013/05/17/merge-wordpress-tags-easily-and-quickly-for-a-leaner-better-site/#comments</comments>
		<pubDate>Fri, 17 May 2013 14:58:10 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/17/merge-wordpress-tags-easily-and-quickly-for-a-leaner-better-site/</guid>
		<description><![CDATA[<p>In a way, tags in WordPress are like categories. They are meant to group similar topics together in a way that makes them easily accessible (i.e. by clicking on a tag link and seeing all the posts marked with that descriptor). The problem a lot of people run into is that they end up assigning [...]</p><p>The post <a href="http://causeblogs.org/2013/05/17/merge-wordpress-tags-easily-and-quickly-for-a-leaner-better-site/">Merge WordPress Tags Easily and Quickly for a Leaner, Better Site</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/05/08/making-conditional-tags-work-magic-in-your-wordpress-site/' rel='bookmark' title='Making Conditional Tags Work Magic in Your WordPress Site'>Making Conditional Tags Work Magic in Your WordPress Site</a></li>
<li><a href='http://causeblogs.org/2013/04/30/how-to-quickly-duplicate-a-wordpress-database/' rel='bookmark' title='How To Quickly Duplicate A WordPress Database'>How To Quickly Duplicate A WordPress Database</a></li>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>In a way, <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> in WordPress are like categories. They are meant to group similar topics together in a way that makes them easily accessible (i.e. by clicking on a tag link and seeing all the posts marked with that descriptor).</p>
<p>The problem a lot of people run into is that they end up assigning too many <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> to their posts. This defeats the purpose of <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>. If you only end up with one or two posts with that tag, it hardly deserves its own “category.”</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115368" title="tags-700px" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/tags-700px.jpg?resize=500%2C300" alt="" data-recalc-dims="1" /></div>
</div>
<p>As mentioned, <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> are somewhat like categories — but just a little more specific. For example, here at WPMU, we obviously don’t think the term “<a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>” is big enough or important enough for its own category. However, I am going to tag this post “<a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>” because it seems like an important enough/big enough topic that other posts will also touch on it some significant way.</p>
<p>I’m NOT, however, going to tag this post “merge <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>.” That topic isn’t large enough to have a significant number of other posts that talk <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> that.</p>
<p>To be honest, I might have done that in the past, but we’ve come to realize it’s not really that valuable. And so we’re actually in the middle of cleaning up our “tag problem” by deleting many and merging the rest.</p>
<p>If you’ve got a tag problem too, read on.</p>
<h2><strong>How to Merge Your Tags</strong></h2>
<p>In order to help you merge your <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>, I’m going recommend you use a plugin called <a href="http://wordpress.org/extend/plugins/term-management-tools/">Term Management Tools</a>.</p>
<p>Once that’s installed, you’ll need to hop on over to your tag screen (Posts &gt; <a title="Tags" target="_blank" href="http://causeblogs.org/tags/">Tags</a>).</p>
<h3><strong>Get Rid of Unused Tags</strong></h3>
<p>Probably the very first thing you should do before you start merging is to start deleting. You may find a number of <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> will be hard to merge with others. You might also find that somehow you’ve ended up with <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> that aren’t assigned to any post at all.</p>
<p>On your tag page, if you click on the “Posts” link on the right, it will arrange your <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> by the number of times they’re assigned to a post. I’d start by checking the box for all the ones that say “0” and then using the pull-down menu at the top and deleting them.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-ratio-large wp-image-115369" title="delete-tags-700px" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/delete-tags-700px.jpg?resize=500%2C299" alt="" data-recalc-dims="1" /></div>
</div>
<h3><strong>Get Rid of “Difficult” Tags</strong></h3>
<p>You can then start looking down through your other <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> and seeing if there are any you know you can delete right away – i.e. <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> that not many posts use and that will be difficult to merge with others. Again, the best candidates here will be the ones that are assigned to only a few posts.</p>
<p>As before, check the box next to the name of the tag, and then use the pull-down menu at the top.</p>
<p>If you have a large number of <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>, you may want to increase the number you can see on one screen by pulling down the Screen Options panel at the top and bumping that number up.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-ratio-large wp-image-115370" title="increase-items-700px" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/increase-items-700px.jpg?resize=500%2C308" alt="" data-recalc-dims="1" /></div>
</div>
<h3><strong>Merge Remaining Tags</strong></h3>
<p>Assuming you’ve got the Term Management Tools plugin active, you can now get to merging your <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>.</p>
<p>Go through your remaining list and check all those that should be merged together into one term.</p>
<p>In my example, I am checking the tag “blue” and the tag “blue things.” From the pull-down menu at the top, I choose “Merge.”</p>
<p>When I choose “Merge,” another box appears just to the right of the pull-down menu. I simply write the name of the tag both of those <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> will be merged into. In my case, I’m writing in the name “blue.” But you don’t have to write the name of an existing tag here. You can write the name of a completely new tag.</p>
<p>Click “Apply,” and your <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a> will be merged.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-ratio-large wp-image-115371" title="merge-700px" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/merge-700px.jpg?resize=500%2C214" alt="" data-recalc-dims="1" /></div>
</div>
<p>If you have a lot of <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>, this process may take a while, but it will be worth it in the end. It will be better for your users, and you can give up the tag addiction that so many of us are afflicted with.</p>
<p>(Note: Once the job is done, you can delete this plugin from your site. No use keeping unused <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>around.)</p>
<p>Photo: <a href="http://www.bigstockphoto.com/image-3849135/stock-photo-red-tag">Red Tag</a> from BigStock</p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/featured-wordpress-plugin-simple-tags/' rel='bookmark' title='Featured WordPress Plugin: Simple Tags'>Featured WordPress Plugin: Simple Tags</a> <small>This week I’m going to look at some <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>that&#8230;</small></li>
<li><a href='http://wpmu.org/how-to-merge-categories-in-wordpress/' rel='bookmark' title='How to Merge Categories in WordPress'>How to Merge Categories in WordPress</a> <small>No plugin necessary &#8211; check out this quick guide for&#8230;</small></li>
<li><a href='http://wpmu.org/11-ways-to-make-your-wordpress-site-faster-and-leaner/' rel='bookmark' title='11 Ways to Make Your WordPress Site Faster and Leaner'>11 Ways to Make Your WordPress Site Faster and Leaner</a> <small>Is your site slow? Does it it crawl at a&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/17/merge-wordpress-tags-easily-and-quickly-for-a-leaner-better-site/">Merge WordPress Tags Easily and Quickly for a Leaner, Better Site</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/05/08/making-conditional-tags-work-magic-in-your-wordpress-site/' rel='bookmark' title='Making Conditional Tags Work Magic in Your WordPress Site'>Making Conditional Tags Work Magic in Your WordPress Site</a></li>
<li><a href='http://causeblogs.org/2013/04/30/how-to-quickly-duplicate-a-wordpress-database/' rel='bookmark' title='How To Quickly Duplicate A WordPress Database'>How To Quickly Duplicate A WordPress Database</a></li>
<li><a href='http://causeblogs.org/2013/04/21/posterous-shutting-down-how-to-move-your-posterous-site-to-wordpress/' rel='bookmark' title='Posterous Shutting Down: How To Move Your Posterous Site To WordPress'>Posterous Shutting Down: How To Move Your Posterous Site To WordPress</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/17/merge-wordpress-tags-easily-and-quickly-for-a-leaner-better-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A 10 Year Visual History of WordPress.org</title>
		<link>http://wpmu.org/wordpress-10-years-old-visual-history/</link>
		<comments>http://causeblogs.org/2013/05/16/a-10-year-visual-history-of-wordpress-org/#comments</comments>
		<pubDate>Thu, 16 May 2013 14:47:13 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[wordpress 10th birthday]]></category>
		<category><![CDATA[wordpress birthday]]></category>
		<category><![CDATA[wordpress history]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/16/a-10-year-visual-history-of-wordpress-org/</guid>
		<description><![CDATA[<p>May 27th will mark the 10th birthday for WordPress, which started as a fork by Matt Mullenweg and Mike Little from the b2evolution blogging software. In fact, in good internet fashion, you can see some of the very first stirrings of WordPress in a post where Matt laments that b2 hasn’t been updated in a [...]</p><p>The post <a href="http://causeblogs.org/2013/05/16/a-10-year-visual-history-of-wordpress-org/">A 10 Year Visual History of WordPress.org</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2012/10/03/the-top-10-free-wordpress-youtube-gallery-plugins/' rel='bookmark' title='The Top 10 Free WordPress YouTube Gallery Plugins'>The Top 10 Free WordPress YouTube Gallery Plugins</a></li>
<li><a href='http://causeblogs.org/2013/05/14/how-to-insert-wordpress-photo-galleries-anywhere-into-your-theme/' rel='bookmark' title='How to Insert WordPress Photo Galleries Anywhere Into Your Theme'>How to Insert WordPress Photo Galleries Anywhere Into Your Theme</a></li>
<li><a href='http://causeblogs.org/2013/04/10/wordpress-3-6-beta-1-hits-the-shelves/' rel='bookmark' title='WordPress 3.6 Beta 1 Hits The Shelves'>WordPress 3.6 Beta 1 Hits The Shelves</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>May 27<sup>th</sup> will mark the 10<sup>th</sup> birthday for WordPress, which started as a fork by <a href="http://ma.tt/">Matt Mullenweg</a> and <a href="http://zed1.com/journalized/">Mike Little</a> from the <a href="http://b2evolution.net/">b2evolution blogging software</a>.</p>
<p>In fact, in good internet fashion, you can see some of the very first stirrings of WordPress <a href="http://ma.tt/2003/01/the-blogging-software-dilemma/">in a post</a> where Matt laments that b2 hasn’t been updated in a while, and he’s thinking of splitting off from it. The first commenter on that post is Mike Little saying, “If you’re serious <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> forking b2 I would be interested in contributing.”</p>
<p>And WordPress was born.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-ratio-large wp-image-115277" title="balloons" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/balloons.jpg?resize=500%2C316" alt="" data-recalc-dims="1" /></div>
</div>
<p>In order to celebrate the occasion, we thought we’d take a look back at these last 10 years. No doubt you will be seeing a lot of “looking back” posts over the next few weeks, going over <a title="features" target="_blank" href="http://causeblogs.org/features/">features</a> that have been added and important decisions that have been made.</p>
<p>But in this post we thought we’d take a different tack. With the help of the <a href="http://archive.org/web/web.php">Wayback Machine from archive.org</a>, we thought we’d go take a look at how WordPress.org itself has changed stylistically over the years. For those of us who spend a lot of time on the site, it might take us back.</p>
<p>Although it still holds to its roots of uncluttered simplicity today, there have been a number changes along the way. Take a look for yourself.</p>
<h2><strong>June 18, 2003</strong></h2>
<p>This was the first screenshot we could get a hold of, and so we’ll start here. As the official birthday is in May, and we find ourselves in May now, from here on out we will sample each year from a date in May.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115235" title="2003-June-18" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2003-June-18.jpg?resize=500%2C372" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>About Page</strong></h3>
<p>It might also be interesting to take a look at the first <a title="About" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">About</a> page for the site. You’ll notice a few interesting things there. One of the more interesting is a mention that the name “WordPress” itself came from Christine Tremoulet of <a href="http://www.bigpinkcookie.com/">BigPinkCookie.com</a>. (Yes, her <a title="blog" target="_blank" href="http://causeblogs.org/blog/">blog</a> runs WordPress.)</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115237" title="2003-about" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2003-about.jpg?resize=500%2C657" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Utilities? </strong></h3>
<p>You might notice an odd menu item there that you aren’t used to – “Utilities.” Here’s what that page consisted of.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115238" title="2003-utilities" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2003-utilities.jpg?resize=500%2C235" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>By July 29<sup>th</sup>, however, the name “Utilities” had been changed to “Hacks.”</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115241" title="2003-July-29-hacks-menu" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2003-July-29-hacks-menu.jpg?resize=500%2C121" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Showing Off the Goods</strong></h3>
<p>Of course it’s a good idea to show off the wares to potential users, and so screenshots were included. Here’s a look at the first editor:</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115243" title="2003-editor-screenshot" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2003-editor-screenshot.jpg?resize=500%2C316" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>You can see more <a href="http://web.archive.org/web/20031001165912/http:/wordpress.org/about/screenshots/">screenshots here</a>.</p>
<p>It’s interesting to note that the WordPress.org site these days doesn’t seem to advertise screenshots of the backend. Perhaps because it’s free and easy to install, no look at the backend is really needed.</p>
<hr />
<h2><strong>May 2004</strong></h2>
<p>Taking a look at the site the next year, we see a few changes.</p>
<p>Of course one change is the dark, right-side column where WordPress <a title="features" target="_blank" href="http://causeblogs.org/features/">features</a> are highlighted. Another little change is the shadow against the background.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115245" title="2004-May-6" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2004-May-6.jpg?resize=500%2C381" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Donate</strong></h3>
<p>In the menu, we also see a Donate button has been added. Taking a look at that page, we see a somewhat vague promise of “additional benefits.” OK, not a “somewhat “ vague promise — a completely vague promise. </p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115246" title="2004-donate" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2004-donate.jpg?resize=500%2C293" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Screenshots</strong></h3>
<p>And we also get a look at the updated editor.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115247" title="2004-editor" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2004-editor.jpg?resize=500%2C315" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2005</strong></h2>
<p>In 2005, things look pretty much the same, but we can see by the top menu that a <a title="blog" target="_blank" href="http://causeblogs.org/blog/">blog</a> has been added and a section to recommend web hosts.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115249" title="2005-may27" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2005-may27.jpg?resize=500%2C456" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Screenshots</strong></h3>
<p>In the screenshots section, you’ll notice that they’ve begun advertising <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>in a more upfront way.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115250" title="2005-screenshots-themes" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2005-screenshots-themes.jpg?resize=500%2C435" alt="" data-recalc-dims="1" /></div>
</div>
<p>One other little note here. You may notice a little banner in the top right-hand corner that WordPress had been named Application of the Year by ArsTechnica. Here’s <a href="http://arstechnica.com/information-technology/2005/01/linux-20050102/2/">what they said</a>: “WordPress is the most prominent rising star of weblog software, completely free and with a large and active <a title="community" target="_blank" href="http://causeblogs.org/community/">community</a>. Styles, <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>and hacks are readily available, with problems such as comment spamming being addressed far more rapidly than competing applications.”</p>
<p>And here’s a screenshot of the editor for that time.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115251" title="2005-editor" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2005-editor.jpg?resize=500%2C250" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2006</strong></h2>
<p>In 2006 we see a lighter, cleaner look with the removal of the background image. We now also see some navigation on the left. You might also notice the “Donate” button is now gone.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115252" title="2006-may-24" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2006-may-24.jpg?resize=500%2C513" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Themes and Plugins</strong></h3>
<p>In the menu, you’ll notice the first section for <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>and <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>called “Extend.”</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115254" title="2006-extend" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2006-extend.jpg?resize=500%2C367" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>If we take a look at the <a title="themes " target="_blank" href="http://causeblogs.org/themes/">themes </a>section, you can see there were six! And you viewed their thumbnails by scrolling from left to right.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115255" title="2006-themes" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2006-themes.jpg?resize=500%2C541" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2007</strong></h2>
<p>No real changes to the homepage this year, and so we won’t include it here. Also, though there was the beginning of a theme directory, by May of 2007, it seems to have been eliminated. However, you can see that the plugin directory had really started to take off.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115257" title="2007-plugins" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2007-plugins.jpg?resize=500%2C886" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>Year 2008</strong></h2>
<p>By 2008, the homepage had taken on a heavier look with a dark gray header area.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115258" title="2008-may" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2008-may.jpg?resize=500%2C388" alt="" data-recalc-dims="1" /></div>
</div>
<h3></h3>
<h3><strong>Plugins</strong></h3>
<p>In 2008 the plugin section had been reorganized (still no theme directory at this point). You’ll also notice some stats:</p>
<p><strong>2,181 <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>, 4,082,686 downloads, and counting</strong></p>
<p>At the time of this writing, those stats stand as follows:</p>
<p><strong>24,897 <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>, 453,551,157 downloads, and counting</strong></p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115260" title="2008-plugins" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2008-plugins.jpg?resize=500%2C424" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2009</strong></h2>
<p>The next year saw only a few minor changes to the homepage, but you’ll notice a menu item for “Showcase” at the top now – a chance to show off <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> out in the public using WordPress. It seems the Showcase was added in the fall of 2008.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115261" title="2009-may" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/2009-may.jpg?resize=500%2C405" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>By May of 2009, the theme directory was also back … in full force. (Technically it seems to have arrived in 2008.)</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115262" title="2008-themes" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2008-themes.jpg?resize=500%2C405" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2010</strong></h2>
<p>No major changes seem to have occurred to homepage by May of 2010.</p>
<hr />
<h2><strong>May 2011</strong></h2>
<p>By May of 2011 we see a return to a lighter homepage.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115264" title="2011-may" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2011-may.jpg?resize=500%2C399" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2012</strong></h2>
<p>In May of 2012 we see a few important menu changes. The “Extend” section has been broken out into “<a title="Plugins" target="_blank" href="http://causeblogs.org/features/plugins/">Plugins</a>” and “<a title="Themes" target="_blank" href="http://causeblogs.org/features/themes/">Themes</a>,” but more importantly, we see a sign of the times with an addition of a “Mobile” button.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115265" title="2012-may" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2012-may.jpg?resize=500%2C221" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>We can also see that the plugin section has gotten a lot of love in the last year, including the addition of fancy headers, <a href="http://wpmu.org/wordpress-plugin-rating-system/" target="_blank">a star rating system</a>, and a more integrated <a title="support " target="_blank" href="http://causeblogs.org/help-support/">support </a>area.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115267" title="2012-plugins" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2012-plugins.jpg?resize=500%2C466" alt="" data-recalc-dims="1" /></div>
</div>
<hr />
<h2><strong>May 2013</strong></h2>
<p>And finally we arrive at today. We see a return to a darker header.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115268" title="2013-may" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/2013-may.jpg?resize=500%2C426" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>We also see a new menu item at the top called “Get Involved.” This pulls down to reveal a number of different areas of the site where you can learn more <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> the behind-the-scenes process of putting WordPress together, as well as where you can begin to help yourself.</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115269" title="2013-get-involved" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/2013-get-involved.jpg?resize=500%2C379" alt="" data-recalc-dims="1" /></div>
</div>
<p> </p>
<p>And so not only do we have to end there, but it’s also an appropriate place to end. WordPress has made it ten years with the help of a lot of different people pitching in from all over the world. If you feel so inclined, and you’d like to see ten more years of improvement, then <a href="http://make.wordpress.org/">think about joining in here</a>.</p>
<p>photo credit: <a href="http://www.flickr.com/photos/camdiluv/4441155157/sizes/o/in/photostream/" target="_blank">camdiluv</a></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/5-tips-for-wordpress-bloggers-from-the-greatest-writers-in-history/' rel='bookmark' title='5 Tips for WordPress Bloggers from the Greatest Writers in History'>5 Tips for WordPress Bloggers from the Greatest Writers in History</a> <small>If you’ve got five minutes, I’ve collected some tips from&#8230;</small></li>
<li><a href='http://wpmu.org/daily-tip-how-to-show-a-post-from-exactly-one-year-ago-today/' rel='bookmark' title='How to Show a Post From Exactly One Year Ago Today'>How to Show a Post From Exactly One Year Ago Today</a> <small>There may be certain special occasions where you’d like to&#8230;</small></li>
<li><a href='http://wpmu.org/wordpress-2010-a-year-in-review/' rel='bookmark' title='WordPress 2010: A Year in Review'>WordPress 2010: A Year in Review</a> <small>Today’s 12 Days of WordPress comes to you from Sarah&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/16/a-10-year-visual-history-of-wordpress-org/">A 10 Year Visual History of WordPress.org</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2012/10/03/the-top-10-free-wordpress-youtube-gallery-plugins/' rel='bookmark' title='The Top 10 Free WordPress YouTube Gallery Plugins'>The Top 10 Free WordPress YouTube Gallery Plugins</a></li>
<li><a href='http://causeblogs.org/2013/05/14/how-to-insert-wordpress-photo-galleries-anywhere-into-your-theme/' rel='bookmark' title='How to Insert WordPress Photo Galleries Anywhere Into Your Theme'>How to Insert WordPress Photo Galleries Anywhere Into Your Theme</a></li>
<li><a href='http://causeblogs.org/2013/04/10/wordpress-3-6-beta-1-hits-the-shelves/' rel='bookmark' title='WordPress 3.6 Beta 1 Hits The Shelves'>WordPress 3.6 Beta 1 Hits The Shelves</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/16/a-10-year-visual-history-of-wordpress-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Naked WordPress Theme: A Crash Course For Designers</title>
		<link>http://wpmu.org/the-naked-wordpress-theme-a-crash-course-for-designers/</link>
		<comments>http://causeblogs.org/2013/05/16/the-naked-wordpress-theme-a-crash-course-for-designers/#comments</comments>
		<pubDate>Thu, 16 May 2013 14:47:09 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[how to theme wordpress]]></category>
		<category><![CDATA[learn wordpress]]></category>
		<category><![CDATA[naked wordpress theme]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress starter theme]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/16/the-naked-wordpress-theme-a-crash-course-for-designers/</guid>
		<description><![CDATA[<p>Here’s the scenario: You’re brand new to WordPress and you’ve been asked by your client to use it for their new website. You’ve created a beautiful design but have very limited time to learn about how to theme WordPress. You look to the codex but it has more information than you need and it’s difficult [...]</p><p>The post <a href="http://causeblogs.org/2013/05/16/the-naked-wordpress-theme-a-crash-course-for-designers/">The Naked WordPress Theme: A Crash Course For Designers</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/03/26/7-free-modern-starter-frameworks-for-wordpress-designers/' rel='bookmark' title='7 Free, Modern Starter Frameworks for WordPress Designers'>7 Free, Modern Starter Frameworks for WordPress Designers</a></li>
<li><a href='http://causeblogs.org/2013/04/21/leading-premium-wordpress-theme-providers-compared/' rel='bookmark' title='Leading Premium WordPress Theme Providers Compared'>Leading Premium WordPress Theme Providers Compared</a></li>
<li><a href='http://causeblogs.org/2012/05/10/daily-tip-easily-edit-custom-post-types-in-the-wordpress-dashboard/' rel='bookmark' title='Daily Tip: Easily Edit Custom Post Types in the WordPress Dashboard'>Daily Tip: Easily Edit Custom Post Types in the WordPress Dashboard</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Here’s the scenario: You’re brand new to WordPress and you’ve been asked by your client to use it for their new website. You’ve created a beautiful design but have very limited time to learn <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> how to theme WordPress. You look to the codex but it has more information than you need and it’s difficult to piece it all together.</p>
<p>When you browse the code in the default WordPress theme, you have no idea what any of it does and you are running out of time. You need a crash course in the worst way. You need the <a href="http://bckmn.com/naked-wordpress/" title="Naked WordPress Theme" target="_blank">Naked WordPress Theme</a>.</p>
<figure id="attachment_115227" class="wp-caption alignnone wp-caption-large cgrid-row" style="width: 700px">
<div class="cgrid-col cgrid-col-span-full"><a href="http://i0.wp.com/wpmu.org/wp-content/uploads/2013/05/bathtub.jpg" rel="lightbox[115214]" title="bathtub"><img src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/bathtub.jpg?resize=500%2C260" alt="" title="bathtub" class="size-ratio-large wp-image-115227" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">“The solution for designers who don’t know WordPress”</figcaption>
</div>
</figure>
<h3>Learn how to theme WordPress with the Naked WordPress theme</h3>
<p>The Naked WordPress theme was created by <a href="http://bckmn.com/" title="Joshua Beckman" target="_blank">Joshua Beckman</a> to be “The solution for designers who don’t know WordPress”.</p>
<p>This is not your ordinary bare bones theme, stripped of everything but the essentials. Naked WordPress assumes that you know nothing <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> WordPress and includes comments on all aspects of the theme.  Every single piece of the template files is commented so that you can understand what it does. Armed with that knowledge you can safely  rearrange and customize your theme. You’ll be able to remove pieces without worrying <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> deleting something essential.</p>
<p>Here’s a quick example of just how useful the Naked WordPress theme is for beginners. If you’re brand new to WordPress, you probably have no idea what <strong>wp_head()</strong> does. Naked WordPress clues you in to how important it is so that you don’t screw things up:</p>
<div id="fvch-codeblock-0" class="fvch-codeblock">
<table>
<tr>
<td class="fvch-line-numbers">
<pre>1
2
3
4
5
6
</pre>
</td>
<td class="fvch-code">
<pre id="fvch-code-0"><span class="php"><span class="php-script-tag">&lt;?php</span> wp_head<span class="php-brackets">(</span><span class="php-brackets">)</span>; 
<span class="php-comment">// This fxn allows <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>, and WordPress itself, to insert themselves/scripts/css/files </span>
<span class="php-comment">// (right here) into the head of your website. </span>
<span class="php-comment">// Removing this fxn call will disable all kinds of <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>and WordPress default insertions. </span>
<span class="php-comment">// Move it if you like, but I would keep it around.</span>
<span class="php-script-tag">?&gt;<span class="html"></span></span></span></pre>
</td>
</tr>
</table>
</div>
<p>With this kind of commenting built into the theme, there’s no need to look things up in the codex when you’re building in a hurry. The functions are neatly summarized and commented inline to save you time.</p>
<p>Naked WordPress <a title="features" target="_blank" href="http://causeblogs.org/features/">features</a>:</p>
<ul>
<li>Responsive styling</li>
<li>Custom menus</li>
<li>Custom sidebar and widgets</li>
<li><a title="Blog" target="_blank" href="http://causeblogs.org/blog/">Blog</a>, with all the WordPress goodies we know and love (comments, categories, <a title="tags" target="_blank" href="http://causeblogs.org/tags/">tags</a>, etc.)</li>
<li>Pages, <a title="Home" target="_blank" href="http://causeblogs.org/">Home</a> page</li>
</ul>
<p>
<figure id="attachment_115304" class="wp-caption alignright wp-caption-right cgrid-row" style="width: 312px">
<div class="cgrid-col cgrid-col-span-2 cgrid-col-right">
<div class="cgrid-col-wide-right"><a href="http://i1.wp.com/wpmu.org/wp-content/uploads/2013/05/naked-wp.jpg" rel="lightbox[115214]" title="naked-wp"><img src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/naked-wp.jpg?resize=312%2C234" alt="" title="naked-wp" class="size-ratio-2-3 wp-image-115304" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">Naked WordPress is the perfect starter theme for anyone who is new to WordPress.</figcaption>
</div>
</div>
</figure>
<p>Check out a live demo by visiting the <a href="http://bckmn.com/naked-wordpress/" target="_blank">Naked WordPress</a> homepage. As you can see, it’s nothing but the basics and all the comments are neatly hidden within the php template files, which are not visible to your visitors. </p>
<p>Of course, reading up on the codex and learning all the ins and outs of WordPress theming is highly recommended if you want to be able to expertly navigate it and create your own <a title="themes" target="_blank" href="http://causeblogs.org/features/themes/">themes</a>. However, if you’re more interested in <em>designing</em> the theme than <em>building</em> it, then the Naked Theme will help to keep things moving while you’re still learning WordPress. It functions as both a starter theme and a crash course all in one. </p>
<p>Download the <a href="http://bckmn.com/naked-wordpress/" title="Naked WordPress" target="_blank">Naked WordPress</a> theme for free from its homepage and follow the project on <a href="https://github.com/j-beckman/naked-wordpress" target="_blank">github</a>. If it helps you build something, consider showing a little love to the developer by way of a donation.</p>
<p>photo credit: <a href="http://www.flickr.com/photos/flea_ef/4462368202/">emanuela franchini</a> via <a href="http://photopin.com">photopin</a> <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/the-rankings-90-most-popular-premium-wordpress-theme-designers/' rel='bookmark' title='The Rankings: 90 Most Popular Premium WordPress Theme Designers'>The Rankings: 90 Most Popular Premium WordPress Theme Designers</a> <small>The most popular WordPress design shops are ranked from 1&#8230;</small></li>
<li><a href='http://wpmu.org/wordpress-theme-team-releases-free-underscores-starter-theme/' rel='bookmark' title='WordPress Theme Team Releases Free Underscores Starter Theme'>WordPress Theme Team Releases Free Underscores Starter Theme</a> <small>Using the Underscores starter theme just got a little easier&#8230;.</small></li>
<li><a href='http://wpmu.org/free-wordpress-framework/' rel='bookmark' title='7 Free, Modern Starter Frameworks for WordPress Designers'>7 Free, Modern Starter Frameworks for WordPress Designers</a> <small>Get a rundown of the 7 best free WordPress frameworks&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/16/the-naked-wordpress-theme-a-crash-course-for-designers/">The Naked WordPress Theme: A Crash Course For Designers</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/03/26/7-free-modern-starter-frameworks-for-wordpress-designers/' rel='bookmark' title='7 Free, Modern Starter Frameworks for WordPress Designers'>7 Free, Modern Starter Frameworks for WordPress Designers</a></li>
<li><a href='http://causeblogs.org/2013/04/21/leading-premium-wordpress-theme-providers-compared/' rel='bookmark' title='Leading Premium WordPress Theme Providers Compared'>Leading Premium WordPress Theme Providers Compared</a></li>
<li><a href='http://causeblogs.org/2012/05/10/daily-tip-easily-edit-custom-post-types-in-the-wordpress-dashboard/' rel='bookmark' title='Daily Tip: Easily Edit Custom Post Types in the WordPress Dashboard'>Daily Tip: Easily Edit Custom Post Types in the WordPress Dashboard</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/16/the-naked-wordpress-theme-a-crash-course-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The WordPress Planet is Pants – and here’s how to improve it</title>
		<link>http://wpmu.org/wordpress-planet-pants-problem/</link>
		<comments>http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/#comments</comments>
		<pubDate>Thu, 16 May 2013 14:47:00 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[pants]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[wordpress news]]></category>
		<category><![CDATA[wordpress planet]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/</guid>
		<description><![CDATA[<p>Since back in the day I’ve had a keen interest in the WordPress Planet, sure sometimes it’s been a bit snarky, but at the end of the day I am genuinely interested in good WP news coming through the pipes into my various dashboards. And of course, from a business perspective I could hardly be more interested… man I’d [...]</p><p>The post <a href="http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/">The WordPress Planet is Pants – and here’s how to improve it</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2012/10/02/protect-your-wordpress-blog-with-this-wordpress-antimalware-plugin/' rel='bookmark' title='Protect Your WordPress Blog with WordPress AntiMalware Plugin'>Protect Your WordPress Blog with WordPress AntiMalware Plugin</a></li>
<li><a href='http://causeblogs.org/2013/04/23/swiftype-the-best-search-solution-for-wordpress/' rel='bookmark' title='Swiftype: The Best Search Solution For WordPress'>Swiftype: The Best Search Solution For WordPress</a></li>
<li><a href='http://causeblogs.org/2013/03/26/wordpress-org-vs-wordpress-com-a-definitive-guide-for-2013/' rel='bookmark' title='WordPress.org vs WordPress.com: A Definitive Guide For 2013'>WordPress.org vs WordPress.com: A Definitive Guide For 2013</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Since back in the day I’ve had a keen interest in the <a href="http://planet.wordpress.org/">WordPress Planet</a>, sure sometimes it’s been a bit <a href="http://wpmu.org/cleaning-up-the-wordpress-planet-beardwise/">snarky</a>, but at the end of the day I am genuinely interested in good WP <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a> coming through the pipes into my various dashboards.</p>
<p>And of course, from a business perspective I could hardly be more interested… man I’d love to have <a href="http://wpmu.org">WPMU.org</a> in there, since the early days it’s been the holy grail of ‘writing <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> WordPress’ publishing.</p>
<p><strong>But let’s be honest, these days it’s a waste of space, an afterthought, a void and a vacuum, it’s tumbleweed across a deserted dashboard… in short, it’s pants.</strong></p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full">
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full-wide"><img class="aligncenter size-full wp-image-115313" title="spaceman" src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/spaceman1.jpg?resize=500%2C219" alt="" data-recalc-dims="1" /></div>
</div>
</div>
</div>
<p>And I think, <a href="http://wpmu.org/wordpress-10-years-old-visual-history/">especially with 10 years coming up</a>, it’s <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> time it was sorted out.</p>
<p>Specifically, let’s:</p>
<ol>
<li>Remove the pointless, non-updated, irrelevant &amp; repetitive stuff (see below for the complete teardown)</li>
<li>Add in some of the massive amounts of good stuff out there (see below that)</li>
<li>Not let people ‘buy their way’ into it</li>
<li>Actually make it work.</li>
</ol>
<p>So, without further ado…</p>
<h2>So, what is the WordPress Planet… and why should I care?</h2>
<p>Well, that’s easy, <a href="http://planet.wordpress.org/">it’s this aggregation of ‘blogs talking about WordPress’</a>, which goes into the dashboard of every WordPress site as ‘Other <a title="WordPress News" target="_blank" href="buddypress">WordPress News</a>’ [headlines only]</p>
<figure id="attachment_115242" class="wp-caption alignleft wp-caption-left cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3">
<div class="cgrid-col-wide-left"><img class="size-ratio-3-2 wp-image-115242" title="wpdashboard470" src="http://i0.wp.com/causeblogs.org/wp-content/uploads/2013/05/wpdashboard470.jpg?resize=448%2C219" alt="" data-recalc-dims="1" /><br />
<figcaption class="wp-caption-text">The WP Plate as it appears on the Dashboard today, riveting huh</figcaption>
</div>
</div>
</figure>
<p>Historically this has been the place where people are supposed to go to to get their WP <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a>, resources, information and increasingly tutorials.</p>
<p>Along with occasional controversy.</p>
<p>It’s included in something stupid like 60,000,000 WordPress <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a>, by default.</p>
<p>And what’s the policy for inclusion, well it’s pretty simple</p>
<blockquote><p>This is an aggregation of blogs talking <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> WordPress from around the world. If you think your <a title="blog" target="_blank" href="http://causeblogs.org/blog/">blog</a> should be part of this send an email to Matt.</p>
</blockquote>
<p>It’s <a href="http://ma.tt">Matt’s</a> list, that’s taken care of that then.</p>
<p>And it’s been stagnant, or worse, pretty much since it’s inception, specifically because of…</p>
<h2>Who is on the Planet… should they be?</h2>
<p>Here’s the complete list, with my thoughts attached, would be interested in others, I’m by no means <em>the</em> expert in this.</p>
<p>Essentially my criteria is whether these feeds are adding value to a WordPress user by being in there, or not, along with a dash of whether  they are updated and/or any good.</p>
<p>Also, I’m going to take the position that commercial entities shouldn’t be there.</p>
<ul>
<li><a title="Akismet Blog" href="http://blog.akismet.com/">Akismet</a> - Commercial entity, so no</li>
<li><a title="alexking.org » WordPress" href="http://alexking.org/">Alex King</a> - A mixture of commercial and personal WP GPL stuff, yes</li>
<li><a title="Andrew Ozz on WordPress" href="http://azaozz.wordpress.com/">Andrew</a> - Not updated for over 2 years, no point</li>
<li><a title="Andrew Nacin » WordPress" href="http://nacin.com/">Andrew Nacin</a> - One post in the last year, not really on WP, so nope</li>
<li><a title="Andy Skelton » WordPress" href="http://andy.wordpress.com/">Andy Skelton</a> -  Nothing on WP since 2011, drop</li>
<li><a title="BuddyPress.org" href="http://buddypress.org/">BuddyPress</a> - BuddyPress, obviously yes</li>
<li><a title="WordPress News" href="http://wordpress.org/news">Dev Blog</a> - Yes, duh</li>
<li><a title="Holy Shmoly! » WordPress" href="http://ocaoimh.ie/">Donncha</a> - A couple of super cache updates, could just be done in plugin, so no</li>
<li><a title="Dougal Campbell's geek ramblings » WordPress" href="http://dougal.gunters.org/">Dougal Campbell</a> - 8 relevant posts in the last 12 months is good enough for me, pass</li>
<li><a title="Gravatar Blog" href="http://blog.gravatar.com/">Gravatar</a> - Hmmm, really, bit like Akismet, for WP accounts, so no</li>
<li><a title="Jen Mylo, WordPress Cat Herder » WordPress" href="http://jenmylo.com/">Jane Wells</a> - Name needs updating, 2 related posts in last year (one much better off on make.wordpress.org), so no</li>
<li><a title="Joseph Scott » wordpress" href="http://josephscott.org/">Joseph</a> - Another Automattician, couple of commercial posts but half a dozen decent relevant WP ones so yes</li>
<li><a title="" href="http://planet.wordpress.org/">Lloyd</a> - Broken feed / site offline</li>
<li><a title="Lorelle on WordPress » WordPress News" href="http://lorelle.wordpress.com/">Lorelle on WP</a> - Makes sense, plenty of <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a>, yes</li>
<li><a title="Mark on WordPress" href="http://markjaquith.wordpress.com/">Mark Jaquith</a> - Half a dozen relevant ones, so yes</li>
<li><a title="Matt Mullenweg" href="http://ma.tt/">Matt</a> - Good when relevant, shouldn’t really be *everything*</li>
<li><a title="Mike Little's Journalized » WordPress" href="http://zed1.com/journalized">Mike Little</a> - Two posts on WP birthdays and one WordCamp announcement in 12 months… naw</li>
<li><a title="westi on wordpress" href="http://westi.wordpress.com/">Peter Westwood</a> - Nothing since Jan 2012, begone</li>
<li><a title="Ping-O-Matic" href="http://blog.pingomatic.com/">Ping-O-Matic</a> - This is a bit silly, remove</li>
<li><a title="WordPress for Android" href="http://android.wordpress.org/">WP Android</a> <a href="http://android.wordpress.org/feed/">(feed)</a> - Unnecessary, surely, wouldn’t one feed, or the dev <a title="blog" target="_blank" href="http://causeblogs.org/blog/">blog</a>, do it?</li>
<li><a title="WordPress for BlackBerry" href="http://blackberry.wordpress.org/">WP Blackberry</a> <a href="http://blackberry.wordpress.org/feed/">(feed)</a> - “”</li>
<li><a title="" href="http://planet.wordpress.org/">WP Nokia</a> <a href="http://nokia.wordpress.org/">(feed)</a> - “”</li>
<li><a title="WordPress for Windows Phone" href="http://wpwindowsphone.wordpress.com/">WP Windows Phone 7</a> <a href="http://wpwindowsphone.wordpress.com/feed/">(feed)</a> - “”</li>
<li><a title="WordPress for iOS" href="http://ios.wordpress.org/">WP iPhone</a> <a href="http://ios.wordpress.org/feed/">(feed)</a> - “”</li>
<li><a title="WordPress Tavern" href="http://www.wptavern.com/">WPTavern</a> <a href="http://feeds2.feedburner.com/WordpressTavern">(feed)</a> - I’d say no, given their new ambitions and shady context (more on that below)</li>
<li><a title="Weblog Tools Collection" href="http://weblogtoolscollection.com/">Weblog Tools Collection</a> <a href="http://feeds2.feedburner.com/weblogtoolscollection/UXMP">(feed)</a> - Just been sold to a new buyer, who knows if they are trustworthy, remove please (see below)</li>
<li><a title="WordPress.tv" href="http://wordpress.tv/">WordPress.tv</a> <a href="http://wordpress.tv/feed/">(feed)</a> - Makes sense</li>
<li><a title="WordPress.tv Blog" href="http://wptvblog.wordpress.com/">WordPress.tv Blog</a> <a href="http://wptvblog.wordpress.com/feed/">(feed)</a> - Really, do we need it twice?</li>
<li><a title="bbPress.org » Blog" href="http://bbpress.org/">bbPress</a> <a href="http://bbpress.org/blog/feed/">(feed)</a> - Of course</li>
<li><a title="real ultimate waffe (.net) » WordPress" href="http://mdawaffe.wordpress.com/">mdawaffe</a> <a href="http://mdawaffe.wordpress.com/category/wordpress/feed/">(feed)</a> - Half a dozen posts since 2005, dunno why this is even here, remove</li>
</ul>
<p><strong>Results:</strong></p>
<p>Keep = 10<br />
Remove = 20</p>
<h2>Ooo, controversial, so why no WP Tavern or WLTC?</h2>
<p>As I mentioned above, both are now folded / retired / rebirthed and both now owned by unknowns, or maybe the same unknown!</p>
<p>And in the ultra-competitive space of WordPress publishing (we’re all doing this for a reason, let’s not kid anyone, advertising, <a href="http://premium.wpmudev.org">WPMU DEV</a>, other revenue streams, our egos…) both are gaining a massive commercial and competitive advantage over other <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> in the space.</p>
<p>Surely that shouldn’t be for sale? It just doesn’t seem <em>right</em>.</p>
<figure id="attachment_115229" class="wp-caption alignnone wp-caption-right cgrid-row clearfix" style="width: 583px">
<div class="cgrid-col cgrid-col-span-4 cgrid-col-right">
<div class="cgrid-col-wide-right"><img class="size-ratio-4-1 wp-image-115229" title="moneycantbuyyoulove" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/moneycantbuyyoulove.jpg?resize=500%2C352" alt="" data-recalc-dims="1" /></div>
</div>
<figcaption class="wp-caption-text cgrid-col cgrid-col-span-1">
<div class="cgrid-col-wide-left">Buying up a site shouldn’t guarantee you entry into the WordPress Planet, if anything it should get that site kicked out until it can prove that the new posts and alike are gonna be of as decent a standard as before!</div>
</figcaption>
</figure>
<p>And I mean, wannabee Valleywag WP Candy was included and then taken out again (for being basically pants too, I think). So it’s not like these things aren’t done and considered. I wonder when and/or why the chap upstairs removed them.</p>
<p>I’d say that until WLTC demonstrates if it’s going to get back on its feet and start doing good WP stuff, then it shouldn’t be included.</p>
<p>And that WP Tavern should probably also be put on probation, at least until we know who is behind it and what their motives are… as well as asking whether it’s covering or offering the kind of stuff we are after.</p>
<h2>And who should replace them?</h2>
<p>Because there are a lot of excellent <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> WordPress out there, and not in the Planet, that are far, far better.</p>
<p>Obviously <a href="http://wpmu.org">WPMU</a> would provide a completely non commercial feed if asked, but we’re not going to be, so that being said I reckon that, we should see:</p>
<ul>
<li><a href="http://wpdaily.co">WP Daily</a> – John’s transparent enough and doing a good enough job to warrant inclusion</li>
<li><a href="http://wpmail.me/">WP Mail</a> – A web version of this should absolutely be included, it’s the best aggregation (alongside WP Daily’s) of what’s going on</li>
<li><a href="http://wp.smashingmagazine.com/">Smashing Mag WP Section</a> – Great, detailed, quality, in-depth articles, why on earth not?</li>
<li><a href="http://wp.tutsplus.com/">WP Tuts +</a> – Clearly Envato are back in the good books, having 1% GPL products is enough, yay, why not give ‘em a slot</li>
</ul>
<p>And also…</p>
<ul>
<li><a href="http://wplift.com/">WP Lift</a> – Why not, they give it a good crack</li>
<li><a href="http://www.wpbeginner.com/blog/">WP Beginner</a> – Always good quality</li>
<li><a href="http://www.wpmayor.com/">WP Mayor</a> – Doing a good job</li>
<li><a href="http://chrislema.com/blog/">Chris Lema</a> – Bit more commercial, but worth it</li>
</ul>
<p>In my opinion these <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> all offer fantastic, regular, fairly unbiased and mostly non commercial useful <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a>, information and resources <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> WordPress… why not make that the criteria and shake up the Planet a bit.</p>
<p>How does that sound? Got any other suggestions, leave ‘em in the comments.</p>
<p>And while we’re at it…</p>
<h2>How can we make The Planet actually work?</h2>
<p>Well, howabout we stop thinking <a title="about" target="_blank" href="http://causeblogs.org/why-causeblogs/about/">about</a> it as an afterthought.</p>
<p>With as many people using WordPress as there are currently are, why can’t Matt / Automattic / The WP Foundation / The <a title="Community " target="_blank" href="http://causeblogs.org/community-2/">Community </a>actually get it right on WordPress.org and in WP dashboards the world over.</p>
<p>Let’s start with removing the fluff and bringing in the good.</p>
<p>And then let’s let (or pay, in $s or links) <a href="http://www.cozmoslabs.com/">Christian and Bianca</a> curate it – and make it a proper big deal… not just an item in the dashboard (although we can keep that) but a weekly notification in the WP backend (easily turned off) that says…</p>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><img class="aligncenter size-full wp-image-115219" title="wpweekly" src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/wpweekly.jpg?resize=500%2C173" alt="" data-recalc-dims="1" /></div>
</div>
<p>Let’s celebrate the wonderful World of <a title="WordPress news" target="_blank" href="buddypress">WordPress news</a>, let’s not hide, it’s a huge strength.</p>
<p>And last, but not least, let’s make an editorial code for the setup and a board to enforce it, something like:</p>
<ul>
<li>Strictly non commercial work, not promoting any one product (products must be reviewed)</li>
<li>Fair and unbiased</li>
<li>No affiliate stuff ever, whatsoever, under any circumstances</li>
<li>No advertising within posts (only on your own site)</li>
</ul>
<p>And anything else you can think of.</p>
<p>It’s not rocket science, it’s just making some effort and doing it properly.</p>
<p>What say you?</p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/cleaning-up-the-wordpress-planet-beardwise/' rel='bookmark' title='Nice work with the WordPress Planet, now let’s make it just about WordPress'>Nice work with the WordPress Planet, now let’s make it just about WordPress</a> <small>It’s great to see WP Tavern and WP Candy added&#8230;</small></li>
<li><a href='http://wpmu.org/daily-tip-subscribe-to-the-buddypress-news-planet/' rel='bookmark' title='Subscribe to the BuddyPress News Planet'>Subscribe to the BuddyPress News Planet</a> <small>Quickly catch up on BuddyPress <a title="news" target="_blank" href="http://causeblogs.org/news/">news</a> with this new resource&#8230;.</small></li>
<li><a href='http://wpmu.org/who-wears-the-pants-in-your-buddypress-groups-new-plugin-gives-you-the-power-to-promote-demote-and-block-users-with-ease/' rel='bookmark' title='Who Wears the Pants in Your BuddyPress Groups? New Plugin Gives You the Power To Promote, Demote and Block Users With Ease'>Who Wears the Pants in Your BuddyPress Groups? New Plugin Gives You the Power To Promote, Demote and Block Users With Ease</a> <small>A plugin for managing BuddyPress <a title="groups" target="_blank" href="http://causeblogs.org/groups/">groups</a> is hot off the&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/">The WordPress Planet is Pants – and here’s how to improve it</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2012/10/02/protect-your-wordpress-blog-with-this-wordpress-antimalware-plugin/' rel='bookmark' title='Protect Your WordPress Blog with WordPress AntiMalware Plugin'>Protect Your WordPress Blog with WordPress AntiMalware Plugin</a></li>
<li><a href='http://causeblogs.org/2013/04/23/swiftype-the-best-search-solution-for-wordpress/' rel='bookmark' title='Swiftype: The Best Search Solution For WordPress'>Swiftype: The Best Search Solution For WordPress</a></li>
<li><a href='http://causeblogs.org/2013/03/26/wordpress-org-vs-wordpress-com-a-definitive-guide-for-2013/' rel='bookmark' title='WordPress.org vs WordPress.com: A Definitive Guide For 2013'>WordPress.org vs WordPress.com: A Definitive Guide For 2013</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/16/the-wordpress-planet-is-pants-and-heres-how-to-improve-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Clean Up Unused Plugins in WordPress Multisite</title>
		<link>http://wpmu.org/how-to-clean-up-unused-plugins-in-wordpress-multisite/</link>
		<comments>http://causeblogs.org/2013/05/15/how-to-clean-up-unused-plugins-in-wordpress-multisite/#comments</comments>
		<pubDate>Wed, 15 May 2013 14:36:45 +0000</pubDate>
		<dc:creator>Alan Mclaughlin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[multisite]]></category>
		<category><![CDATA[Multisite Plugins]]></category>
		<category><![CDATA[wordpress multisite]]></category>
		<category><![CDATA[wordpress multisite plugins]]></category>
		<category><![CDATA[wordpress network plugins]]></category>

		<guid isPermaLink="false">http://causeblogs.org/2013/05/15/how-to-clean-up-unused-plugins-in-wordpress-multisite/</guid>
		<description><![CDATA[<p>Do you ever find yourself staring at a long list of installed plugins, wondering which ones are safe to delete? WordPress multisite networks can bulk up on plugins fairly quickly. Every now and then a good old-fashioned spring cleaning is in order. Checking through each site on your network to see what plugins are in [...]</p><p>The post <a href="http://causeblogs.org/2013/05/15/how-to-clean-up-unused-plugins-in-wordpress-multisite/">How To Clean Up Unused Plugins in WordPress Multisite</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/10/importing-exporting-wordpress-sites-to-and-from-a-multisite-install/' rel='bookmark' title='Importing &amp; Exporting WordPress Sites To and From a Multisite Install'>Importing &amp; Exporting WordPress Sites To and From a Multisite Install</a></li>
<li><a href='http://causeblogs.org/2013/05/06/how-to-redirect-nonexistent-blogs-in-wordpress-multisite/' rel='bookmark' title='How To Redirect Nonexistent Blogs in WordPress Multisite'>How To Redirect Nonexistent Blogs in WordPress Multisite</a></li>
<li><a href='http://causeblogs.org/2013/03/26/wordpress-multisite-guide-for-beginners-unlock-the-power-of-networks/' rel='bookmark' title='WordPress Multisite Guide for Beginners: Unlock the Power of Networks'>WordPress Multisite Guide for Beginners: Unlock the Power of Networks</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Do you ever find yourself staring at a long list of installed <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>, wondering which ones are safe to delete? WordPress multisite networks can bulk up on <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>fairly quickly. Every now and then a good old-fashioned spring cleaning is in order. </p>
<p>Checking through each site on your network to see what <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>are in use is simply not an option. The task is much too tedious for a busy site admin like yourself. That’s where <a href="http://wordpress.org/extend/plugins/plugin-activation-status/" target="_blank">Plugin Activation Status</a> saves the day. It essentially performs a plugin audit so that you can get rid of any extra baggage.</p>
<h3>Find and dump all your unused plugins</h3>
<p>When you first <a title="activate" target="_blank" href="http://causeblogs.org/activate/">activate</a> the plugin, you’ll see this screen with an empty list, located at <strong>Network Admin &gt;&gt; <a title="Plugins" target="_blank" href="http://causeblogs.org/features/plugins/">Plugins</a> &gt;&gt; Active <a title="Plugins" target="_blank" href="http://causeblogs.org/features/plugins/">Plugins</a></strong>.</p>
<figure id="attachment_114943" class="wp-caption alignright wp-caption-right cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3 cgrid-col-right">
<div class="cgrid-col-wide-right"><a href="http://i1.wp.com/wpmu.org/wp-content/uploads/2013/05/empty-list1.jpg" rel="lightbox[114935]" title="empty-list"><img src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/empty-list1.jpg?resize=448%2C190" alt="" title="empty-list" class="size-ratio-3-2 wp-image-114943" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">The list is empty until you generate the report.</figcaption>
</div>
</div>
</figure>
<p>Click continue to generate the lists. Don’t do this during peak traffic time if you have a massive network as it might cause slow downs. </p>
<p>Plugin Activation Status will produce two lists: </p>
<ul>
<li>A list of <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>that are not currently active on any <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> or networks</li>
<li>A list of <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>that are active somewhere within the installation, accompanied by details of where and how those <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>are activated</li>
</ul>
<p>
<figure id="attachment_114951" class="wp-caption alignleft wp-caption-left cgrid-row" style="width: 448px">
<div class="cgrid-col cgrid-col-span-3">
<div class="cgrid-col-wide-left"><a href="http://i2.wp.com/wpmu.org/wp-content/uploads/2013/05/inactive-plugins.jpg" rel="lightbox[114935]" title="inactive-plugins"><img src="http://i2.wp.com/causeblogs.org/wp-content/uploads/2013/05/inactive-plugins.jpg?resize=448%2C370" alt="" title="inactive-plugins" class="size-ratio-3-2 wp-image-114951" data-recalc-dims="1" /></a><br />
<figcaption class="wp-caption-text">Plugin Activation Status locates all unused <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a></figcaption>
</div>
</div>
</figure>
<p>
The most useful feature of this plugin is that it quickly lets you know how many <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>you can safely dump. You can also examine the <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>that are used on only a few <a title="sites" target="_blank" href="http://causeblogs.org/blogs/">sites</a> to see if there are any among those that you could also get rid of, much like cleaning out your closet. New lists can be generated on demand as often as you want to clean out your network <a title="plugins" target="_blank" href="http://causeblogs.org/features/plugins/">plugins</a>.</p>
<p>Please note that this plugin is only for multisite networks, as it does not make sense for single site installs.</p>
<h3>A good WordPress admin must clean up after himself.</h3>
<div class="image-grid cgrid-row">
<div class="cgrid-col cgrid-col-span-full"><a href="http://i1.wp.com/wpmu.org/wp-content/uploads/2013/05/cleanup.jpg" rel="lightbox[114935]" title="cleanup"><img src="http://i1.wp.com/causeblogs.org/wp-content/uploads/2013/05/cleanup.jpg?resize=500%2C275" alt="" title="cleanup" class="aligncenter size-ratio-large wp-image-114955" data-recalc-dims="1" /></a></div>
</div>
<p>Installing <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>just to try them out and not deleting them is a nasty habit. Sure, you’re in a hurry, but later on you’ll forget why you added those <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>and wonder if you’re really using them. Removing unused <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>is an important part of multisite maintenance. You’ll be able to see issues more clearly when troubleshooting if you have fewer <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>active, minimize security risks and keep your site leaner. Install <a href="http://wordpress.org/extend/plugins/plugin-activation-status/" target="_blank">Plugin Activation Status</a> and it will tell you exactly which <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>you can dump for spring cleaning.</p>
<p>photo credit: <a href="http://www.flickr.com/photos/atibens/4578260998/">atibens</a> via <a href="http://photopin.com">photopin</a> <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/">cc</a></p>
<p><!-- PHP 5.x -->
<p>Related posts:</p>
<ol>
<li><a href='http://wpmu.org/wordpress-multisite-plugins/' rel='bookmark' title='16 Time-Saving WordPress Multisite Plugins for Managing Your Network'>16 Time-Saving WordPress Multisite Plugins for Managing Your Network</a> <small>Check out these new <a title="plugins " target="_blank" href="http://causeblogs.org/plugins-overview/">plugins </a>for WordPress multisite, selected to&#8230;</small></li>
<li><a href='http://wpmu.org/daily-tip-keep-a-clean-wordpress-uploads-folder-by-deleting-unused-images/' rel='bookmark' title='Keep a Clean WordPress Uploads Folder by Deleting Unused Images'>Keep a Clean WordPress Uploads Folder by Deleting Unused Images</a> <small>Many times while creating pages and posts a user will&#8230;</small></li>
<li><a href='http://wpmu.org/24-massively-useful-plugins-for-wordpress-multisite-networks/' rel='bookmark' title='24 Massively Useful Plugins for WordPress Multisite Networks'>24 Massively Useful Plugins for WordPress Multisite Networks</a> <small>Need some new tools for managing your WordPress multisite network?&#8230;</small></li>
</ol><p>The post <a href="http://causeblogs.org/2013/05/15/how-to-clean-up-unused-plugins-in-wordpress-multisite/">How To Clean Up Unused Plugins in WordPress Multisite</a> appeared first on <a href="http://causeblogs.org">Causeblogs</a>.</p><div class='yarpp-related-rss'>
<h3>Related posts:</h3><ol>
<li><a href='http://causeblogs.org/2013/04/10/importing-exporting-wordpress-sites-to-and-from-a-multisite-install/' rel='bookmark' title='Importing &amp; Exporting WordPress Sites To and From a Multisite Install'>Importing &amp; Exporting WordPress Sites To and From a Multisite Install</a></li>
<li><a href='http://causeblogs.org/2013/05/06/how-to-redirect-nonexistent-blogs-in-wordpress-multisite/' rel='bookmark' title='How To Redirect Nonexistent Blogs in WordPress Multisite'>How To Redirect Nonexistent Blogs in WordPress Multisite</a></li>
<li><a href='http://causeblogs.org/2013/03/26/wordpress-multisite-guide-for-beginners-unlock-the-power-of-networks/' rel='bookmark' title='WordPress Multisite Guide for Beginners: Unlock the Power of Networks'>WordPress Multisite Guide for Beginners: Unlock the Power of Networks</a></li>
</ol>
<img src='http://yarpp.org/pixels/e792590cc8711144724e4594d579cca0'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://causeblogs.org/2013/05/15/how-to-clean-up-unused-plugins-in-wordpress-multisite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.038 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-21 21:47:27 -->
