<?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>Red Pill: Shiny New Toy's Blog &#187; plugins</title>
	<atom:link href="http://shinynewtoy.com/blog/tag/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://shinynewtoy.com/blog</link>
	<description>Causes dizziness and other side effects</description>
	<lastBuildDate>Mon, 19 Jul 2010 16:38:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Five days, five new features: Populating the superfooter columns on day 4</title>
		<link>http://shinynewtoy.com/blog/2008/10/16/five-days-five-new-features-populating-the-superfooter-columns-on-day-4/</link>
		<comments>http://shinynewtoy.com/blog/2008/10/16/five-days-five-new-features-populating-the-superfooter-columns-on-day-4/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 21:57:35 +0000</pubDate>
		<dc:creator>J.J.</dc:creator>
				<category><![CDATA[blogs]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://shinynewtoy.com/blog/2008/10/16/five-days-five-new-features-populating-the-superfooter-columns-on-day-4/</guid>
		<description><![CDATA[Yesterday, I added the superfooter to Red Pill.&#160; And truth be told the new blog features I’m going to talk about today were actually added yesterday (after all, it would be hard to have a viewable superfooter unless something was in it), but now I’m going to describe exactly what code I used to make [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I <a href="http://shinynewtoy.com/blog/2008/10/15/five-days-five-new-features-adding-the-superfooter-on-day-3/">added the superfooter</a> to Red Pill.&#160; And truth be told the new blog features I’m going to talk about today were actually added yesterday (after all, it would be hard to have a viewable superfooter unless something was in it), but now I’m going to describe exactly what code I used to make it happen.</p>
<p>In the left column of the superfooter, I wanted a tag cloud.&#160; Recent versions of WordPress have tags built in and you can use the <a href="http://codex.wordpress.org/Template_Tags/wp_tag_cloud">wp_tag_cloud</a> function to display a tag cloud on your site.&#160; My code is </p>
<p>&lt;?php wp_tag_cloud(&#8216;smallest=8&amp;largest=22&amp;number=20&#8242;); ?&gt;</p>
<p>The attribute number=20 limits my cloud to only show the most used 20 tags in Red Pill.</p>
<p>In the middle column, I’m using the <a href="http://rmarsh.com/plugins/recent-comments/">Recent Comments plugin</a> to provide a list of (duh!) recent comments on Red Pill.&#160;&#160; The Recent Comments plugin is built by the same developer who built the <a href="http://rmarsh.com/plugins/similar-posts/">Similar Posts</a> plugin <a href="http://shinynewtoy.com/blog/2008/10/14/five-days-five-new-feature-adding-related-posts-on-day-2/">I wrote about on day 2 of this series</a>.&#160; Like that plugin, Recent Comments has a ton of powerful configuration and display options that can be set from within the WordPress admin dashboard.&#160; </p>
<p>In the right column, I wanted to bring in the RSS feed from our Tumblelog – <a href="http://bluepill.shinynewtoy.com">Blue Pill</a>.&#160; I’m using the <a href="http://simplepie.org">SimplePie</a> RSS classes to grab the RSS feed, parse it, and display it.&#160; There’s a <a href="http://simplepie.org/wiki/plugins/start">number of plugins</a> utilizing SimplePie for WordPress (and tons of other content management systems out there), but I like the <a href="http://wordpress.org/extend/plugins/simplepie-plugin-for-wordpress/">official SimplePie plugin</a> that the SimplePie team maintains.&#160; I like the built in template system within the plugin that seperates the functionality from the markup and design.&#160; Once I installed the plugin and used the dashboard configuration page to define a new template called ‘tumblr’ that removed the descrition feed from the display, I added the following code to the superfooter php</p>
<p>&lt;ul&gt;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;?php     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo SimplePieWP(&#8216;<a href="http://shinynewtoy.tumblr.com/rss'">http://shinynewtoy.tumblr.com/rss&#8217;</a>, array(     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;items&#8217; =&gt; 5,     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;cache_duration&#8217; =&gt; 900,     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;date_format&#8217; =&gt; &#8216;n/j/Y g:i A&#8217;,     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;template&#8217; =&gt; &#8216;tumblr&#8217;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ));     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ?&gt;     <br />&lt;/ul&gt;</p>
<p>&#160;</p>
<p>And with that, my superfooter was no full of some initial goodies. </p>
]]></content:encoded>
			<wfw:commentRss>http://shinynewtoy.com/blog/2008/10/16/five-days-five-new-features-populating-the-superfooter-columns-on-day-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five days, five new features: Adding &#8216;Related Posts&#8217; on Day 2</title>
		<link>http://shinynewtoy.com/blog/2008/10/14/five-days-five-new-feature-adding-related-posts-on-day-2/</link>
		<comments>http://shinynewtoy.com/blog/2008/10/14/five-days-five-new-feature-adding-related-posts-on-day-2/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:13:56 +0000</pubDate>
		<dc:creator>J.J.</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://shinynewtoy.com/blog/2008/10/14/five-days-five-new-feature-adding-related-posts-on-day-2/</guid>
		<description><![CDATA[Yesterday, I added in the All-in-one-SEO-pack plugin for WordPress.  A relatively simple kickoff to my five days, five new features series I’m running this week to get myself back on the wagon with blogging.  Or is off the wagon.  I get those confused all the time, so who knows. Today, I’m going to adding a [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I added in the All-in-one-SEO-pack plugin for WordPress.  A relatively simple kickoff to my five days, five new features series I’m running this week to get myself back on the wagon with blogging.  Or is off the wagon.  I get those confused all the time, so who knows.</p>
<p>Today, I’m going to adding a list of related posts on the single post page of this WordPress blog.  If this works correctly – and you are looking at the single post version of this page (not the index, archive, or search result pages) you should a list below that shows 3 posts that you might also find of interest.  I’m utilizing the <a href="http://wordpress.org/extend/plugins/similar-posts/">Similar Posts plugin</a> to power this list.  There’s many plugins that will easy give your blog the same functionality, but I like the Similar Posts plugin because you can fine-tune how “post similarity” is defined using post titles, content, and tags.  Many related post plugins simply use tags.</p>
<p>Once you install the plugin, it’s a simple matter of inserting the function into your theme …</p>
<p>&lt;?php //simlilar posts listing<br />
if (function_exists(&#8216;similar_posts&#8217;)) { ?&gt;<br />
&lt;div id=&#8221;similar-posts&#8221;&gt;<br />
&lt;h3&gt;You may also like:&lt;/h3&gt;<br />
&lt;?php similar_posts(); ?&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</p>
<p>….and then add some styling the list it generates.  You can do both of these tasks directly in the admin panels for the plug-in or in your PHP and CSS files for your theme.  I also like that the configuration options allow you to easily filter out categories and authors.</p>
]]></content:encoded>
			<wfw:commentRss>http://shinynewtoy.com/blog/2008/10/14/five-days-five-new-feature-adding-related-posts-on-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five days, Five new features for Red Pill: Day 1 is SEO</title>
		<link>http://shinynewtoy.com/blog/2008/10/13/five-days-five-new-features-for-red-pill-day-1-is-seo/</link>
		<comments>http://shinynewtoy.com/blog/2008/10/13/five-days-five-new-features-for-red-pill-day-1-is-seo/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 22:43:27 +0000</pubDate>
		<dc:creator>J.J.</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://shinynewtoy.com/blog/2008/10/13/five-days-five-new-features-for-red-pill-day-1-is-seo/</guid>
		<description><![CDATA[Last week, I basically wrote about blog neglect.&#160; Some of that neglect has been a result of client work that we’re just not quite ready to start talking about yet.&#160; But some of the time suck has been due to some internal tasks…many of which are related to this very blog. So in effort, to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://shinynewtoy.com/blog/2008/10/08/dear-blog/">Last week</a>, I basically wrote about blog neglect.&#160; Some of that neglect has been a result of client work that we’re just not quite ready to start talking about yet.&#160; But some of the time suck has been due to some internal tasks…many of which are related to this very blog.</p>
<p>So in effort, to roll out some new features to Red Pill, as well as get back in the blogging routine, I’m going to add a new site feature to Red Pill every day this week. Each new site feature will be accompanied by a blog post.&#160; And so here we go…</p>
<p>I just added the <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All-in-One-SEO-Pack plugin</a> for WordPress.&#160; We always install this plugin for our clients, but for whatever reason…we forgot to add it here.&#160; Talk about neglecting your own best practices!</p>
<p>The biggest thing the plugin does for you is format your post titles in the browser title bar so that the post title appears before the Blog title.&#160; The result of which is optimization for your search engine.&#160; There’s a ton of configuration options in this plugin, and I you need a roadmap to figure out how to set everything, I’ll just point you in the direction of <a href="http://www.imbloggingthat.com/2008/02/28/seo-plugin-for-wordpress-blogs/">the one I used</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://shinynewtoy.com/blog/2008/10/13/five-days-five-new-features-for-red-pill-day-1-is-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins We Always Use</title>
		<link>http://shinynewtoy.com/blog/2008/08/11/wordpress-plugins-we-always-use/</link>
		<comments>http://shinynewtoy.com/blog/2008/08/11/wordpress-plugins-we-always-use/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 06:00:36 +0000</pubDate>
		<dc:creator>J.J.</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://shinynewtoy.com/blog/2008/08/11/wordpress-plugins-we-always-use/</guid>
		<description><![CDATA[Akismet is an obvious choice for any list of WordPress plugins we always use.&#160; But there&#8217;s plenty of other plugins that we find ourselves installing every single time we build a site with WordPress.&#160; If Matt and the Automattic crew ever decide to make these part of the core WP software, Holly and I certainly [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://akismet.com/">Akismet</a> is an obvious choice for any list of WordPress plugins we always use.&#160; But there&#8217;s plenty of other plugins that we find ourselves installing every single time we build a site with <a href="http://wordpress.org">WordPress</a>.&#160; If <a href="http://ma.tt">Matt</a> and the <a href="http://automattic.com/">Automattic</a> crew ever decide to make these part of the core WP software, Holly and I certainly would not object.&#160; </p>
<p>This isn&#8217;t a list of the best plugins out there.&#160; It is simply a list of plugins which are installed every time we deploy a WordPress site.&#160; Actually, most of them are plugins that help out WordPress admins and editors.&#160; </p>
<p>&#160;</p>
<p><a href="http://www.coffee2code.com/wp-plugins/">Customizable Post Listings</a>    <br />I&#8217;ve heard more than one WordPress ninja refer to this plugin as the Swiss Army knife of WP plugins.&#160; What it does it allow you to quickly include lists of recent posts, recent comments, random posts, and other types of lists.&#160; It&#8217;s inevitable that somewhere in your site design that you&#8217;ll want to include a list like this.</p>
<p><a href="http://www.brainonfire.net/resources/files/dublin-core-for-wordpress/">Dublin Core for WordPress</a>    <br />Another plugin that easily optimizes your site for search engines by inserting the <a href="http://en.wikipedia.org/wiki/Dublin_Core">Dublin Core metadata</a> as meta tags in your posts and pages.&#160; </p>
<p><a href="http://guff.szub.net/the-excerpt-reloaded/">The Excerpt Reloaded</a>    <br />Expands the options in using content excerpts in your themes.&#160; </p>
<p><a href="http://www.feedburner.com/fb/a/help/wordpress_quickstart">Feedburner FeedSmith</a>    <br />Priceless if you are using Feedburner to monitor your RSS feeds.&#160; Which you should be.&#160; </p>
<p><a href="http://www.arnebrachhold.de/redir/sitemap-home/">Google XML Sitemaps</a>    <br />Help optimize your web site for search engines.&#160; The plugins I love most provide a ton of useful functionality without actually having to do a lot, if any, configuration.&#160; Just install and you&#8217;re done.</p>
<p><a href="http://w-shadow.com/blog/2007/10/19/one-click-plugin-updater/">One Click Plugin Updater</a>    <br />Keeping WordPress sites updated used to be a nightmare.&#160; Seemed like every time I logged into the WordPress dashboard, I was informed that I had out of date plugins.&#160; While that still seems to be the case, the One Click Plugin Updater actually makes the process of keeping plugins up to date painless.&#160; Does what it says it does &#8211; updates all your plugins with a single mouse click. Eliminates the painfully repetitive process of downloading, unzipping, and uploading updates of your installed plugins one by one.</p>
<p><a href="http://dancameron.org/wordpress/">Search Everything</a>    <br />Expands the search functionality of WordPress to include more than just search of blog posts.&#160; If you are utilizing <a href="http://shinynewtoy.com/blog/2008/08/03/wordpress-as-a-cms/">WordPress as a a CMS</a>, this plugin is an absolute must.</p>
<p><a href="http://www.ilfilosofo.com/blog/wp-db-backup">WordPress Database Backup</a>    <br />Does exactly what you think it does.&#160; The beauty of this plugin is that you can use it to configure automated weekly backups of your DB.&#160; Quite honestly, this plugin is mission critical.</p>
<p>&#160;</p>
<p>What are your essential WordPress plugins?</p>
]]></content:encoded>
			<wfw:commentRss>http://shinynewtoy.com/blog/2008/08/11/wordpress-plugins-we-always-use/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
