<?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>The WordPress Experts - WPMU.org &#187; Plugins</title>
	<atom:link href="http://wpmu.org/category/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpmu.org</link>
	<description>WordPress, Multisite &#38; BuddyPress plugins, themes, news and reviews and special offers from the team at WPMU.org</description>
	<lastBuildDate>Mon, 21 May 2012 16:00:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to Restrict Usernames and Disable Nicknames in WordPress</title>
		<link>http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/</link>
		<comments>http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/#comments</comments>
		<pubDate>Mon, 21 May 2012 16:00:40 +0000</pubDate>
		<dc:creator>Joseph Foley</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[disable wordpress nicknames]]></category>
		<category><![CDATA[hide wordpress nickname]]></category>
		<category><![CDATA[limit wordpress usernames]]></category>
		<category><![CDATA[prohibit wordpress usernames]]></category>
		<category><![CDATA[restrict wordpress usernames]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78278</guid>
		<description><![CDATA[Prevent users from passing themselves off as administrators or using obscene handles.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/trouble-big/" rel="attachment wp-att-78279"><img class="aligncenter size-full wp-image-78279" title="trouble-big" src="http://wpmu.org/wp-content/uploads/2012/05/trouble-big.jpg" alt="" width="643" height="406" /></a><br />
If you allow users to register for your site, then you may eventually get a few troublemakers that want to stir things up by using offensive usernames or wreak havoc by pretending to be part of site’s staff (going by the username Admin or Help or Support, etc.).</p>
<p>&nbsp;</p>
<h2><strong>Restrict Usernames</strong></h2>
<p>The first step you can take to stop this type of thing is to download and activate a plugin called <a href="http://wordpress.org/extend/plugins/restrict-usernames/">Restrict Usernames</a>.</p>
<p>This plugin will allow you to restrict certain names from being registered (such as “admin”) or even names that contain a restricted username (such as “joeadmin” or “Head Admin” etc.). Of course you can also prohibit obscene words. (I&#8217;d give you some examples of those too, but I&#8217;m afraid I don&#8217;t know any.)</p>
<p>Here’s an example. I restricted the username “admin” so that it couldn’t be used as even part of username. And this is what someone trying to register a name with “admin” in it sees.</p>
<p><a href="http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/username-not-allowed/" rel="attachment wp-att-78281"><img class="aligncenter size-full wp-image-78281" title="username-not-allowed" src="http://wpmu.org/wp-content/uploads/2012/05/username-not-allowed.jpg" alt="" width="701" height="546" /></a></p>
<p>&nbsp;</p>
<p>Here’s a list of some ideas from the plugin’s author for what you might want to prevent or require in a username:</p>
<ul>
<li>Prevent usernames that contain foul, offensive, or otherwise undesired words</li>
<li>Prevent squatting on usernames that you may want to use in the future (but don&#8217;t want to actually create the account for just yet) (essentially placing a hold on the username)</li>
<li>Prevent official-sounding usernames from being used (i.e. help, support, pr, info, sales)</li>
<li>Prevent official username syntax from being used (i.e. if all of your administrators use a prefix to identify themselves, you don&#8217;t want a visitor to use that prefix)</li>
<li>Prevent spaces from being used in a username (which WordPress allows by default)</li>
<li>Require that a username begin, end, or contain one of a set of substrings (i.e. &#8220;support_&#8221;, &#8220;admin_&#8221;)</li>
</ul>
<p>&nbsp;</p>

<p>&nbsp;</p>
<h2><strong>Disable Nicknames</strong></h2>
<p>The Restrict Usernames plugin above does its job, but there’s still one problem. Users can register with an innocuous username, and then they can change their nickname to anything they like on their profile page. It’s their nickname that’s seen on the public front end of the site, so in a way, that&#8217;s even more important than the username.</p>
<p><a href="http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/nickname/" rel="attachment wp-att-78282"><img class="aligncenter size-full wp-image-78282" title="nickname" src="http://wpmu.org/wp-content/uploads/2012/05/nickname.jpg" alt="" width="700" height="455" /></a> I couldn’t find a plugin to take care of this problem, but I did finally find <a href="http://wordpress.stackexchange.com/questions/32785/how-to-remove-these-fields-from-the-profile-section">a snippet of code</a> you can put into your functions file. (Note: this snippet is adjusted slightly from the original source. Thanks to WPMU DEV developer Ve Bailovity.)</p>
<p>Place the following code in your function.php file.<strong> (Appearance &gt; Editor &gt; Theme Functions – functions.php)</strong></p>
<p>&nbsp;</p>
<pre>// remove nickname
function prefix_hide_personal_options() {
        if (current_user_can('manage_options')) return false;
?&gt;
&lt;script type="text/javascript"&gt;
  jQuery(document).ready(function( $ ){
    $("#nickname,#display_name").parent().parent().remove();
  });
&lt;/script&gt;
&lt;?php
}
if (is_admin()) add_action('personal_options', 'prefix_hide_personal_options');</pre>
<p>&nbsp;</p>
<p>Once you do this, you’ll notice the nickname section disappears from the Profile page. The Administrator will still be able to see and edit nicknames, however.</p>
<p><a href="http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/nickname-section-gone/" rel="attachment wp-att-78283"><img class="aligncenter size-full wp-image-78283" title="nickname-section-gone" src="http://wpmu.org/wp-content/uploads/2012/05/nickname-section-gone.jpg" alt="" width="700" height="318" /></a></p>
<p>(Note: If you’d like to turn this bit of code into your own personal plugin, you can <a href="http://wpmu.org/how-to-create-your-own-super-simple-wordpress-plugins/">learn how to do that here</a>.)</p>
<h2><strong>Protect the Integrity of Your Site</strong></h2>
<p>Taking these two steps above (installing the plugin and including the code snippet) can help protect your site’s integrity. Bots are trouble enough, but a human troublemaker can be creative and hard to stop.<br />
</p>
<p>Photo: <a href="http://www.bigstockphoto.com/image-2853306/stock-vector-business-concepts:-hello,-my-name-is">Business Concepts: Hello, My Name Is</a> from BigStock</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/110956522007744554847/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Joseph Foley on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/how-to-restrict-usernames-and-disable-nicknames-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Major Updates to the WordPress Plugin Directory</title>
		<link>http://wpmu.org/5-major-updates-to-the-wordpress-plugin-directory/</link>
		<comments>http://wpmu.org/5-major-updates-to-the-wordpress-plugin-directory/#comments</comments>
		<pubDate>Mon, 21 May 2012 14:15:33 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[favorite plugins]]></category>
		<category><![CDATA[plugin support]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin directory]]></category>
		<category><![CDATA[wordpress plugin repository]]></category>
		<category><![CDATA[wordpress support forum]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78301</guid>
		<description><![CDATA[This past week the plugin repository has gotten a complete refresh that will greatly improve discussion and support for the 19,000 plugins currently listed. Here are the details.]]></description>
			<content:encoded><![CDATA[<p>This past week the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress Plugin Repository</a> has gotten a complete refresh that will greatly improve discussion and support for the 19,000 plugins currently listed. Some of the tweaks may seem small but they&#8217;re bound to make a huge difference in the community for developers and plugin users alike.</p>
<p>Here are the most important updates you should know about:</p>
<h3>New Support Tab</h3>
<p>Forum threads about a plugin are now pulled into a new &#8220;support&#8221; tab on the plugin&#8217;s listing page. This is a huge UI improvement that closely ties support in with its corresponding plugin and makes it more of a focal point. Housing support forums under the plugin page is a much tighter integration and more convenient for anyone browsing.</p>
<p><img src="http://wpmu.org/wp-content/uploads/2012/05/support-tab.png" alt="" title="support-tab" width="847" height="391" class="aligncenter size-full wp-image-78354" /></p>
<h3>Plugin Author Display</h3>
<p>Plugin authors are now more prominently displayed with bigger gravatars, the number of plugins they&#8217;ve created and better placement on the page. This is one of my favorite updates, as it gives developers a little more credit for the plugins they offer for free to the community and gives the donation link more prominence.<br />
<img src="http://wpmu.org/wp-content/uploads/2012/05/plugin-author.png" alt="" title="plugin-author" width="464" height="180" class="aligncenter size-full wp-image-78356" /></p>
<h3>Support Activity Summary</h3>
<p>Now you can see how active and well-supported a plugin is by glancing at how many threads have been marked as resolved in the last two weeks.<br />
<img src="http://wpmu.org/wp-content/uploads/2012/05/support-activity.png" alt="" title="support-activity" width="567" height="138" class="aligncenter size-full wp-image-78358" /></p>
<h3>New Favorites Feature</h3>
<p>You can now mark plugins as favorites. Your favorites will show up on your WordPress profile page so that you can find them quickly.<br />
<img src="http://wpmu.org/wp-content/uploads/2012/05/favorites.png" alt="" title="favorites" width="693" height="193" class="aligncenter size-full wp-image-78360" /></p>
<h3>Forum Stickies</h3>
<p>Forum developers now have the ability to set stickies on the plugin forums. These can be used to showcase FAQs or to provide extra information on troubleshooting. Any user you add as a committer on the plugin will have moderation access to the forum.</p>
<p>Head on over to the <a href="http://wordpress.org/extend/plugins/" target="_blank">plugin repository</a> to check out all the changes. What plugins are you adding as your favorites?</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/107629986833959061134/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Sarah Gooding on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/5-major-updates-to-the-wordpress-plugin-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monster Widget &#8211; Add All Core Widgets To Your Sidebar With One Click and Drag</title>
		<link>http://wpmu.org/monster-widget-add-all-core-widgets-to-your-sidebar-with-one-click-and-drag/</link>
		<comments>http://wpmu.org/monster-widget-add-all-core-widgets-to-your-sidebar-with-one-click-and-drag/#comments</comments>
		<pubDate>Mon, 21 May 2012 14:00:39 +0000</pubDate>
		<dc:creator>Tom Ewer</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[monster widget]]></category>
		<category><![CDATA[theme development]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78215</guid>
		<description><![CDATA[Theme development can be a drag at times, but you can use that to your advantage with this simple time-saving plugin!]]></description>
			<content:encoded><![CDATA[<p><img class="alignright  wp-image-78218" title="Monster Widget - Add All Core Widgets To Your Sidebar With One Click and Drag" src="http://wpmu.org/wp-content/uploads/2012/05/monster-widget-tn.jpg" alt="Monster Widget - Add All Core Widgets To Your Sidebar With One Click and Drag" width="356" height="243" />As far as I can tell, theme development is a mixture of those satisfying moments when a spark of creative genius brings about a particularly attractive design element, and pure monotony as you go through the required motions in bringing your creation to life. Perhaps more often the latter than the former.</p>
<p>So if I spot something that can make the task of designing themes a little easier with no downside, I&#8217;ll happily take the opportunity to plug it. <a title="Monster Widget" href="http://wordpress.org/extend/plugins/monster-widget/" target="_blank">Monster Widget</a> is one such something.</p>
<p>There is nothing complicated about Monster Widget&#8217;s functionality &#8211; all it does is consolidate all 13 core widgets into one single widget. So if you want to check the appearance of all core widgets in your theme design, you drag and drop just one widget, rather than 13.</p>
<div id="attachment_78216" class="wp-caption aligncenter" style="width: 675px"><img class="size-full wp-image-78216" title="Monster Widget" src="http://wpmu.org/wp-content/uploads/2012/05/monster-widget.png" alt="Monster Widget" width="665" height="474" /><p class="wp-caption-text">Simple!</p></div>
<p>That&#8217;s it! It&#8217;s just a simple little timesaver which you can add to your standard WordPress development installation.</p>
<p><a title="Monster Widget" href="http://wordpress.org/extend/plugins/monster-widget/" target="_blank">Download Monster Widget here</a>.</p>
<p style="text-align: right;"><em>Creative Commons photo courtesy of <a href="http://www.flickr.com/photos/anieto2k/">anieto2k</a></em></p>
 <div class="wdgpo_author"><a href='https://plus.google.com/111599818756142119126/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Tom Ewer on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/monster-widget-add-all-core-widgets-to-your-sidebar-with-one-click-and-drag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Custom Permalinks Plugin Helps You Clean Up and SEO Messy URLs</title>
		<link>http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/</link>
		<comments>http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/#comments</comments>
		<pubDate>Sat, 19 May 2012 15:00:43 +0000</pubDate>
		<dc:creator>Joseph Foley</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[custom permalink plugin]]></category>
		<category><![CDATA[custom permalinks]]></category>
		<category><![CDATA[remove parent category from wordpress url]]></category>
		<category><![CDATA[seo urls]]></category>
		<category><![CDATA[shorten urls]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78254</guid>
		<description><![CDATA[Control long and unwieldy URLs by customizing the permalink to whatever you like.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/url-big/" rel="attachment wp-att-78255"><img class="aligncenter size-full wp-image-78255" title="url-big" src="http://wpmu.org/wp-content/uploads/2012/05/url-big.jpg" alt="" width="643" height="433" /></a><br />
Recently I had a situation where I had multiple levels of child categories (sub categories), and my permalinks ended up looking like this for a category page:</p>
<pre>example.com/parent-category/child-category/sub-child-category/</pre>
<p>&nbsp;</p>
<p>Because this page would be a destination page that would be shared and even memorized by some, I needed to get the permalink for the Sub Child Category to look like this:</p>
<pre>example.com/sub-child-category/</pre>
<p>After trolling through lots of close-but-no-cigar code snippets and broken plugins, I finally came across the <a href="http://wordpress.org/extend/plugins/custom-permalinks/">Custom Permalinks plugin</a>. This plugin lets you set custom permalinks on a per post, per tag, or per category basis.</p>
<p>And in the process, as in my case above, it doesn’t break your bread crumbs either (i.e. my bread crumbs still show the parent category, child category, and sub child category links).<br />
</p>
<h2><strong>Creating Custom Permalinks</strong></h2>
<p>You create your custom permalinks in several places, depending on what  you’re working with (categories, tags, or posts).</p>
<p>For both categories and tags, you can customize the permalink on the edit pages for categories and tags (either when creating or editing on those pages: <strong>Posts &gt; Categories</strong> and <strong>Posts &gt; Tags</strong> respectively).</p>
<p><a href="http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/custom-permalink/" rel="attachment wp-att-78257"><img class="aligncenter size-full wp-image-78257" title="custom-permalink" src="http://wpmu.org/wp-content/uploads/2012/05/custom-permalink.jpg" alt="" width="648" height="448" /></a>For posts, you can edit the permalink when editing the post.</p>
<p><a href="http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/custom-permalink-for-posts/" rel="attachment wp-att-78258"><img class="aligncenter size-full wp-image-78258" title="custom-permalink-for-posts" src="http://wpmu.org/wp-content/uploads/2012/05/custom-permalink-for-posts.jpg" alt="" width="701" height="386" /></a></p>
<h2><strong>SEO Benefits</strong></h2>
<p>In my case above, I was cleaning up my URLs solely for the benefit of visitors; however, it has been said that shorter, cleaner URLs will also help you with SEO. To what degree that&#8217;s true is debatable (as is much in SEO), but it&#8217;s clear that Google prefers short, nice-looking URLs. They have even <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=76329" target="_blank">said as much</a>: &#8220;A site&#8217;s URL structure should be as simple as possible. &#8230; Whenever possible, shorten URLs by trimming unnecessary parameters.&#8221;</p>
<p>So there you are &#8212; if you have long, messy URLs, this plugin can help you clean them up.</p>

<p>&nbsp;</p>
<p>Photo: <a href="http://www.bigstockphoto.com/image-16825076/stock-photo-www-internet-web-address-concept" target="_blank">www internet web address concept</a> from BigStock</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/110956522007744554847/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Joseph Foley on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/wordpress-custom-permalinks-plugin-clean-up-seo-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daily Tip: Improve SEO by Redirecting Attachment Pages in WordPress</title>
		<link>http://wpmu.org/daily-tip-improve-seo-by-redirecting-attachment-pages-in-wordpress/</link>
		<comments>http://wpmu.org/daily-tip-improve-seo-by-redirecting-attachment-pages-in-wordpress/#comments</comments>
		<pubDate>Sat, 19 May 2012 02:41:15 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[302 redirect]]></category>
		<category><![CDATA[attachment pages]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78252</guid>
		<description><![CDATA[Have you noticed that when you click on images in many WordPress blogs, they often lead to a dead end page? Here's a quick tip for fixing that and boosting your SEO.]]></description>
			<content:encoded><![CDATA[<p>Have you noticed that when you click on images in many WordPress blogs, they often lead to a dead end page? </p>
<p><img src="http://wpmu.org/wp-content/uploads/2012/05/attachment-page.jpg" alt="" title="attachment-page" width="735" height="487" class="aligncenter size-full wp-image-78273" /></p>
<p>That&#8217;s no good! <a href="http://wordpress.org/extend/plugins/attachment-pages-redirect/" target="_blank">Attachment Pages Redirect</a> is a new plugin that does one simple thing. It 301 redirects attachment pages to the post parent, if it has one. If not, it redirects using a 302 temporary redirect to the home page. You may have an SEO plugin that already does this, so make sure to check before you install it. </p>
<p>Indexing pages with no content dilutes your site&#8217;s power to rank in searches. <a href="http://wordpress.org/extend/plugins/attachment-pages-redirect/" target="_blank">Attachment Pages Redirect</a> will help you to get all of those dead ends redirected. Download it for free from the WordPress repository.</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/107629986833959061134/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Sarah Gooding on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/daily-tip-improve-seo-by-redirecting-attachment-pages-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Beautiful HTML5 Image Galleries in WordPress with Juicebox</title>
		<link>http://wpmu.org/create-beautiful-html5-image-galleries-in-wordpress-with-juicebox/</link>
		<comments>http://wpmu.org/create-beautiful-html5-image-galleries-in-wordpress-with-juicebox/#comments</comments>
		<pubDate>Fri, 18 May 2012 14:51:29 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[gallery plugin]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[image gallery]]></category>
		<category><![CDATA[juicebox gallery]]></category>
		<category><![CDATA[responsive plugin]]></category>
		<category><![CDATA[responsive wordpress gallery]]></category>
		<category><![CDATA[responsive wordpress plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress gallery]]></category>
		<category><![CDATA[wp juicebox]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78197</guid>
		<description><![CDATA[If you're looking for an easy-to-use responsive gallery that looks great out of the box, this free plugin may be just the ticket for you.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juicebox.net/" target="_blank">Juicebox</a> is an elegant, easy-to-use image gallery with full major browser and mobile device support.   Its interface and strong list of features makes it one of the most flexible and elegant options for building beautiful galleries. The team at Juicebox has created a WordPress plugin that will expand its use to many more websites.</p>
<p><img src="http://wpmu.org/wp-content/uploads/2012/05/juicebox.jpg" alt="" title="juicebox" width="1008" height="450" class="aligncenter size-full wp-image-78201" /></p>
<p>With the <a href="http://www.juicebox.net/support/wp-juicebox/" target="_blank">WP Juicebox</a> plugin you can easily create a gallery via the WordPress Media Library or from Flickr. Galleries can be inserted into content using a shortcode. The shortcode is generated when you click on the &#8216;Add Juicebox Gallery&#8217; or the Juicebox icon button and enter your desired options for the gallery. When you create a gallery using Flickr images, your published gallery post in WordPress will be automatically updated when you add or remove image within Flickr.</p>
<p><strong>Juicebox is packed full of features:</strong></p>
<ul>
<li><strong>Universal Playback</strong> &#8211; displays on Windows, Mac, Linux, iPhone, iPad and Android</li>
<li><strong>Intuitive Navigation</strong> &#8211; intuitive image navigation via mouse, touch and keyboard</li>
<li><strong>Light and Fast</strong> &#8211; lightweight and fast to load, giving your users a great viewing experience. Smart image pre-loading means images display faster</li>
<li><strong>Responsive Layout</strong> &#8211; resizable interface, which adapts to the browser size. Gallery UI adapts to fit any size screen.</li>
<li><strong>Auto Generated Thumbnails</strong> &#8211; no need to create thumbnails for your image galleries. Juicebox handles this for you.</li>
</ul>
<p><img src="http://wpmu.org/wp-content/uploads/2012/05/juicebox-gallery.png" alt="" title="juicebox-gallery" width="722" height="613" class="aligncenter size-full wp-image-78210" /></p>
<p>If you want even more features, there&#8217;s a <a href="http://www.juicebox.net/download/" target="_blank">pro version</a> available that supports 70+ advanced customization options, no branding, unlimited images, audio, watermarks and more.</p>
<p><a href="http://www.juicebox.net/support/wp-juicebox/" target="_blank">WP Juicebox</a> is not a plugin that you&#8217;ll find in the WordPress repository. It&#8217;s available for free from the team at Juicebox.  If you&#8217;re looking for an easy-to-use responsive gallery that looks great out of the box, this may be just the ticket for you. Give it a play and let us know what you think.</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/107629986833959061134/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Sarah Gooding on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/create-beautiful-html5-image-galleries-in-wordpress-with-juicebox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hot New Pay with a Like Plugin Sees Updates and New Features Already</title>
		<link>http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/</link>
		<comments>http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/#comments</comments>
		<pubDate>Fri, 18 May 2012 14:00:33 +0000</pubDate>
		<dc:creator>Joseph Foley</dc:creator>
				<category><![CDATA[Official Releases]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WPMU DEV]]></category>
		<category><![CDATA[WPMU DEV New]]></category>
		<category><![CDATA[pay with a like]]></category>
		<category><![CDATA[pay with a like plugin]]></category>
		<category><![CDATA[wordpress facebook plugin]]></category>
		<category><![CDATA[wordpress google plus plugin]]></category>
		<category><![CDATA[wordpress linkedin plugin]]></category>
		<category><![CDATA[wordpress twitter plugin]]></category>
		<category><![CDATA[wpmu dev pay with a like plugin]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78178</guid>
		<description><![CDATA[Statistics section, custom CSS capabilities, and more added to this new WPMU DEV plugin.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/thumbsup-big/" rel="attachment wp-att-78179"><img class="aligncenter size-full wp-image-78179" title="thumbsup-big" src="http://wpmu.org/wp-content/uploads/2012/05/thumbsup-big.jpg" alt="" width="643" height="433" /></a><br />
Only out for a about a week at the point, the already popular <em><a href="http://premium.wpmudev.org/project/pay-with-a-like">Pay with a Like</a></em> plugin from WPMU DEV is already seeing updates and new features. <em>Pay with a Like </em>allows you to reveal content only after a user has “liked” it at one of the web’s top four social media services: Facebook, Google Plus, LinkedIn, or Twitter.</p>
<p>Here’s a quick overview of what’s new in the latest release:</p>
<ul>
<li>Basic statistics added</li>
<li>Possibility to have a custom css file outside the plugin directory added</li>
<li>Support for unlimited protected content on a single page</li>
<li>wpmudev_wpal function to be used for custom post type templates added</li>
<li>Deprecated message for PHP5.3 fixed</li>
<li>Embedded scripts are moved to the footer for W3C and better performance and problems with some themes</li>
<li>Improvement of UI in post editor and settings page</li>
<li>Fixed setcookie issue when zero or empty value is entered</li>
</ul>
<p>&nbsp;</p>
<h2><strong>Basic Statistics</strong></h2>
<p>You will now find a Basic Statistics section near the bottom of your settings page for the plugin. This section will tell  you …</p>
<ul>
<li>How many total “likes” you have (this includes Facebook Likes, Google Plus Ones, Linkedin “Ins,” and Tweets)</li>
<li>The number of “likes” from the four different services (Facebook, Google Plus, LinkedIn, and Twitter)</li>
<li>The top “most liked” posts</li>
</ul>
<p>&nbsp;</p>
<p>And here’s what it looks like:</p>
<h2><a href="http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/basic-stats/" rel="attachment wp-att-78181"><img class="aligncenter size-full wp-image-78181" title="basic-stats" src="http://wpmu.org/wp-content/uploads/2012/05/basic-stats.jpg" alt="" width="648" height="334" /></a><strong>Add a CSS File Outside the Plugin Directory</strong></h2>
<p>Another important feature in this release is the ability to add a custom CSS file outside of the plugin’s directory. This allows you to add styles that won’t be overwritten when the plugin is updated.</p>
<p>(Note: If you’re a WPMU DEV member, then you know that many plugins see constant updates and new features. Therefore, if you would like to add your own styles to this plugin, make sure you take advantage of this option.)</p>
<p>There are instructions for what you need to do in order to add your own custom stylesheet at the very bottom of the plugin’s setting page.</p>
<p><a href="http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/stylesheet2/" rel="attachment wp-att-78183"><img class="aligncenter  wp-image-78183" title="stylesheet2" src="http://wpmu.org/wp-content/uploads/2012/05/stylesheet2.jpg" alt="" width="648" height="699" /></a></p>
<p>You can check out more about the <em>Pay with a Like</em> plugin and download it <a href="http://premium.wpmudev.org/project/pay-with-a-like">on its homepage</a>.</p>
<p>&nbsp;</p>

<p>Photo: <a href="http://www.bigstockphoto.com/image-32234945/stock-photo-hand-cursor-thumb-up">Hand Cursor &#8211; Thumb Up</a> from BigStock</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/110956522007744554847/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Joseph Foley on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/hot-new-pay-with-a-like-plugin-sees-updates-and-new-features-already/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins and Usability &#8211; a Match Made in Hell?</title>
		<link>http://wpmu.org/wordpress-plugins-usability/</link>
		<comments>http://wpmu.org/wordpress-plugins-usability/#comments</comments>
		<pubDate>Fri, 18 May 2012 13:00:32 +0000</pubDate>
		<dc:creator>Tom Ewer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[plugin development]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78154</guid>
		<description><![CDATA[Plugins are the lifeblood of WordPress and a major reason for its success. So why are they so damned difficult to use at times?]]></description>
			<content:encoded><![CDATA[<p><img class="alignright  wp-image-78160" title="WordPress Plugins and Usability - a Match Made in Hell?" src="http://wpmu.org/wp-content/uploads/2012/05/hell.jpg" alt="WordPress Plugins and Usability - a Match Made in Hell?" width="356" height="243" />Regular readers of my posts will know that I am no programmer. Far from it. My knowledge stretches to a fairly good understanding of HTML and CSS, and a rudimentary understanding of basic programming principles.</p>
<p>But here&#8217;s the thing &#8211; I am a bit of a usability freak. I first read <em><a title="Designing Web Usability" href="http://www.amazon.com/Designing-Web-Usability-Jakob-Nielsen/dp/156205810X/ref=sr_1_1?ie=UTF8&amp;qid=1337243793&amp;sr=8-1" target="_blank">Designing Web Usability</a> </em>ten years ago (I was a very cool 16 year old). I like to make stuff that is easy to use, and I like to <em>use</em> stuff that is easy to use.</p>
<p>Which makes it all the more frustrating to me that in certain ways, WordPress has a long way to go in terms of usability.</p>
<h2>Plugins</h2>
<p>Ultimately, as a WordPress user, you will spend the majority of your &#8220;fiddling&#8221; (i.e. non-writing) time with plugins. Once you&#8217;re finished with your design you&#8217;re not likely to go back to your theme files and settings much, but you&#8217;ll regularly find new and interesting plugins that can make your site <strong>even more awesome</strong>.</p>
<p>The problem is that such plugins are often unintuitive and difficult to use. Let me give you an idea of what I mean. The following are screenshots of where you can find plugin settings on the backend of <a title="Leaving Work Behind" href="http://www.leavingworkbehind.com/" target="_blank">my own blog</a>:</p>
<p><img class="aligncenter size-full wp-image-78155" title="WordPress Plugins Settings" src="http://wpmu.org/wp-content/uploads/2012/05/settings-1.png" alt="WordPress Plugins Settings" width="301" height="134" /></p>
<p><img class="aligncenter size-full wp-image-78156" title="WordPress Plugins Settings" src="http://wpmu.org/wp-content/uploads/2012/05/settings-2.png" alt="WordPress Plugins Settings" width="301" height="304" /></p>
<p><img class="aligncenter size-full wp-image-78157" title="WordPress Plugins Settings" src="http://wpmu.org/wp-content/uploads/2012/05/settings-3.png" alt="WordPress Plugins Settings" width="300" height="83" /></p>
<p><img class="aligncenter size-full wp-image-78158" title="WordPress Plugins Settings" src="http://wpmu.org/wp-content/uploads/2012/05/settings-4.png" alt="WordPress Plugins Settings" width="301" height="113" /></p>
<p>Yikes.</p>
<p>Does the following process feel familiar to you?</p>
<ol>
<li>Install plugin.</li>
<li>Check plugins page &#8211; settings screen not linked to. Hm.</li>
<li>Check sidebar &#8211; plugin isn&#8217;t listed.</li>
<li>Go to Settings menu bar &#8211; no settings screen (or perhaps it <em>is</em> there, but named in such a way to almost seem deliberately misleading).</li>
<li>Go to Tools menu bar &#8211; nothing there either.</li>
<li>Consult documentation, which may or may not hold the answer.</li>
<li>Cue head scratching and frustration.</li>
</ol>
<p>Every single new plugin installation is a variation on this theme. Occasionally you&#8217;ll find what you need immediately, but sometimes you&#8217;ll go some of or all the way along the above process with no joy.</p>
<h2>The Problem</h2>
<p>Initially I figured that there must be some plugin UI best practices listed &#8211; that it was simply the open source curse that some plugin developers don&#8217;t follow &#8220;the rules&#8221;. Rules as to when a plugin should get its own spot in the sidebar, when its settings screen should be placed in the Settings menu, what makes a plugin a &#8220;Tool&#8221;, and so on.</p>
<p>So I turned to my trusty friend Google. Here are a selection of articles I found, from respected WordPress-related blogs:</p>
<ul>
<li><a title="Best practices for WordPress coding" href="http://www.catswhocode.com/blog/best-practices-for-wordpress-coding" target="_blank">Best practices for WordPress coding</a> (<a title="Cats Who Code" href="http://www.catswhocode.com/" target="_blank">Cats Who Code</a>)</li>
<li><a title="7 Simple Rules: WordPress Plugin Development Best Practices" href="http://wp.tutsplus.com/tutorials/7-simple-rules-wordpress-plugin-development-best-practices/" target="_blank">7 Simple Rules: WordPress Plugin Development Best Practices</a> (<a title="WP Tuts+" href="http://wp.tutsplus.com/" target="_blank">WP Tuts+</a>)</li>
<li><a title="WordPress Development Best Practices" href="http://yoast.com/wp-best-practice/" target="_blank">WordPress Development Best Practices</a> (<a title="Yoast" href="http://yoast.com/" target="_blank">Yoast</a>)</li>
</ul>
<p>These articles cover common themes, such as coding standards, internationalization, and so on&#8230;but nothing at all about UI best practice.</p>
<p>After some further digging, I finally found <a title="WPCandy’s Completely Unofficial Guide to Plugin UI" href="http://wpcandy.com/presents/wordpress-plugin-user-interface-guide" target="_blank">WPCandy’s Completely Unofficial Guide to Plugin UI</a>. A noble effort, certainly, but the key is in the words <strong>completely unofficial</strong>. How many plugin developers are likely to stumble upon this. And whilst the advice therein seems sensible, is it truly complete and correct?</p>
<h2>The Solution</h2>
<p>The WordPress development team are currently busy beavering away on improved custom headers, improvements in internationalization and localization, HTML in image captions (finally!), improved help tabs, and so on.</p>
<p>I would argue that providing an official guide to plugin UI best practice would be more beneficial in the long run than the sum of all the improvements that they are currently working on. <strong>Everyone</strong> uses plugins, and I believe that everyone has experienced frustration as a result of poor plugin UI usability.</p>
<p>Plugins are of course here to stay. They are an enormous part of the reason as to why WordPress is the world&#8217;s most popular content management system. The problem I have discussed today is not going to go away of its own accord.</p>
<p>If WordPress wants to be truly awesome, it needs to be so as a complete package &#8211; plugins and all. Seeing the usability wheels fall off after the installation of a few plugins is simply not good enough.</p>
<p style="text-align: right;"><em>Creative Commons image courtesy of <a href="http://www.flickr.com/photos/nerdegutt/">nerdegutt</a></em></p>
 <div class="wdgpo_author"><a href='https://plus.google.com/111599818756142119126/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Tom Ewer on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/wordpress-plugins-usability/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Daily Tip: Sharpen Resized JPG Images in WordPress</title>
		<link>http://wpmu.org/daily-tip-sharpen-resized-jpg-images-in-wordpress/</link>
		<comments>http://wpmu.org/daily-tip-sharpen-resized-jpg-images-in-wordpress/#comments</comments>
		<pubDate>Fri, 18 May 2012 00:01:30 +0000</pubDate>
		<dc:creator>Sarah Gooding</dc:creator>
				<category><![CDATA[Daily Tip]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[jpg quality]]></category>
		<category><![CDATA[sharpen images]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress jpg plugin]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78167</guid>
		<description><![CDATA[Have you noticed that when JPG images get resized they can become a little fuzzy? Here's how you can fix that in WordPress.]]></description>
			<content:encoded><![CDATA[<p>Have you noticed that when JPG images get resized they can become a little fuzzy? <a href="http://wordpress.org/extend/plugins/sharpen-resized-images/" target="_blank">Sharpen Resized Images</a> is a plugin that will sharpen the images you upload to WordPress as they are resized. Take a look at the difference:</p>
<p><img src="http://wpmu.org/wp-content/uploads/2012/05/sharpen-jpg.png" alt="" title="sharpen-jpg" width="414" height="447" class="aligncenter size-full wp-image-78170" /></p>
<p><a href="http://wordpress.org/extend/plugins/sharpen-resized-images/" target="_blank">Sharpen Resized Images</a> has no settings &#8211; just install and activate. Please note that it will not affect images that have already been uploaded. It will only affect new uploads after you&#8217;ve enabled it. Download <a href="http://wordpress.org/extend/plugins/sharpen-resized-images/" target="_blank">Sharpen Resized Images</a> for free from the WordPress plugin repository.</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/107629986833959061134/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Sarah Gooding on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/daily-tip-sharpen-resized-jpg-images-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display Multiple Authors for One WordPress Post [Plugin]</title>
		<link>http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/</link>
		<comments>http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/#comments</comments>
		<pubDate>Thu, 17 May 2012 16:00:58 +0000</pubDate>
		<dc:creator>Joseph Foley</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[wordpress co-author plugin]]></category>
		<category><![CDATA[wordpress multiple authors plugin]]></category>

		<guid isPermaLink="false">http://wpmu.org/?p=78112</guid>
		<description><![CDATA[This plugin lets your give credit to two or more authors for the same post.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/writers-big/" rel="attachment wp-att-78113"><img class="aligncenter size-full wp-image-78113" title="writers-big" src="http://wpmu.org/wp-content/uploads/2012/05/writers-big.jpg" alt="" width="644" height="540" /></a></p>
<p>We see it all the time from big-time media outlets – more than one author getting credit on an article. In WordPress, however, giving credit to more than one author on a post is not possible out of the box.</p>
<p>The <a href="http://wordpress.org/extend/plugins/co-authors-plus/">Co-Authors Plus plugin</a> solves that problem.</p>
<p>&nbsp;</p>
<h2><strong>How It Works</strong></h2>
<p>This plugin does take a little digging into your theme’s files. You will need to replace the snippet of code your theme uses to call the author in with code provided by the plugin. You can find instructions for this new snippet of code in the <a href="http://wordpress.org/extend/plugins/co-authors-plus/other_notes/">“Other Notes” section</a> on the plugin page.</p>
<p>The plugin page gets into some detail about what you might replace your original author code with, but for a generic replacement you would look for a tag similar to &#8220;<em>the_author</em>&#8221; and replace it with something along the lines of the following:</p>
<pre>if(function_exists('coauthors_posts_links'))
    coauthors_posts_links();
else
    the_author_posts_link();</pre>
<p>&nbsp;</p>
<p>Of course your theme may vary as to the exact tag that it uses to call in the the_author. It may have a customized version, but it will most likely still include the term “author.” Also, remember that you will need to insert the new code wherever you would like it to appear (e.g. single.php, index.php, archive.php, category.php).</p>
<p>&nbsp;</p>
<h2><strong>The Plugin in Action</strong></h2>
<p>Once activated and set up, you will see a new selection below the area where you write your posts. The author who is logged in should already appear in the area. You can then type the name of the other author(s) that you would like to be associated with the post.</p>
<p><a href="http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/choose-authors/" rel="attachment wp-att-78115"><img class="aligncenter size-full wp-image-78115" title="choose-authors" src="http://wpmu.org/wp-content/uploads/2012/05/choose-authors.jpg" alt="" width="607" height="421" /></a>And once everything is finished, both authors (or more) will receive credit.</p>
<p><a href="http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/two-authors/" rel="attachment wp-att-78116"><img class="aligncenter size-full wp-image-78116" title="two-authors" src="http://wpmu.org/wp-content/uploads/2012/05/two-authors.jpg" alt="" width="607" height="538" /></a> </p>
<p>&nbsp;</p>
<p>Photo: <a href="http://www.bigstockphoto.com/image-1132523/stock-photo-endless-writers">Endless Writers</a> from BigStock</p>
 <div class="wdgpo_author"><a href='https://plus.google.com/110956522007744554847/posts?rel=author'><img src="https://ssl.gstatic.com/images/icons/gplus-16.png" /> Joseph Foley on Google+</a></div><!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://wpmu.org/how-to-display-multiple-authors-for-one-wordpress-post-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

