<?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>I Like WordPress! &#187; WordPress plugins</title>
	<atom:link href="http://ilikewordpress.com/category/wordpress-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilikewordpress.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 08 Apr 2011 21:30:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Simple Link Cloaker Plugin Available for Download</title>
		<link>http://ilikewordpress.com/383/simple-link-cloaker-plugin-available-for-download/</link>
		<comments>http://ilikewordpress.com/383/simple-link-cloaker-plugin-available-for-download/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 15:44:19 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[Template coding]]></category>
		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=383</guid>
		<description><![CDATA[Because some days are better than others, I managed to upload the wrong zip file of the link cloaker plugin. That error has been corrected. This is the correct download link for the Simple Link Cloaker plugin. It seems that if I had named the Simple Link Cloaker plugin The Fabulous Redirector instead, all would [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="update">Because some days are better than others, I managed to upload the wrong zip file of the link cloaker plugin. That error has been corrected. This is the <a href="http://ilikewordpress.com/wp-content/uploads/2009/05/ilwp-simple-link-cloaker1.zip">correct download link for the Simple Link Cloaker plugin</a>.</p>
<p>It seems that if I had named the <strong><em>Simple Link Cloaker</em></strong> plugin <strong><em>The Fabulous Redirector</em></strong> instead, all would have been well &#8211; but the guys/girls that run the WordPress plugin repository didn&#8217;t like the term &#8216;cloaker&#8217;. I guess it implies being shady, which we all know is not the intent or use for this plugin.</p>
<p>At any rate, since you can&#8217;t get it from WordPress any more, you can get it here: <a href="http://ilikewordpress.com/wp-content/uploads/2009/05/ilwp-simple-link-cloaker1.zip">ilwp-simple-link-cloaker</a>. Installation is a snap, if you remember the old way of installing plugins:</p>
<ol>
<li> download the plugin zip file to your computer</li>
<li> unzip the file into a directory</li>
<li> upload the entire plugin folder to your wp-content/plugins folder</li>
<li> activate through the Dashboard &gt; Plugins interface</li>
</ol>
<p>Thank you for all of your support!</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/383/simple-link-cloaker-plugin-available-for-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins &#8211; Using the Options Table Properly</title>
		<link>http://ilikewordpress.com/324/wordpress-plugins-using-the-options-table-properly/</link>
		<comments>http://ilikewordpress.com/324/wordpress-plugins-using-the-options-table-properly/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 16:02:52 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wp options]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=324</guid>
		<description><![CDATA[Note: if you&#8217;re not a WordPress plugin developer, this probably won&#8217;t interest you. I ran across this again today, hence my rant: I installed a plugin from the WordPress Plugin Repository ( the place that hosts WordPress plugins so you can download them ), THEN looked through the code. This small specialty plugin added 17 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Note: if you&#8217;re not a WordPress plugin developer, this probably won&#8217;t interest you.</p>
<p>I ran across this again today, hence my rant:</p>
<p>I installed a plugin from the WordPress Plugin Repository ( the place that hosts WordPress plugins so you can download them ), THEN looked through the code. This small specialty plugin <strong>added 17 options</strong> to the options table!</p>
<p>WP developer peeps, there is no excuse for this. By adding so many options, you clog up the options table. Unless you specify the option as an autoload, you&#8217;re using a database read every time you call get_option(). What a waste!</p>
<p>What should you do instead? Glad you asked!</p>
<p>Combine your options into an array. Easy smeasy. WordPress will store your options array as serialized data. Return get_option() to a variable at the start of your script, giving you easy access to all its components.</p>
<p>The WordPress core is getting sizable enough that responsible developers need to optimize their code as much as possible. Eliminating unnecessary database reads/writes is a good first step.</p>
<p>If you need an example, leave a comment and I&#8217;ll post one.</p>
<p>EDIT: as requested, here&#8217;s a couple of examples. First, what many developers do but <strong>shouldn&#8217;t</strong>:</p>
<pre class="brush: php; title: ; notranslate">

$myoption1 = &quot;ted&quot;;
$myoption2 = &quot;fred&quot;;
$myoption3 = &quot;jed&quot;;

update_option( 'myoption1', $myoption1);
update_option( 'myoption2', $myoption2);
update_option( 'myoption3', $myoption3);
</pre>
<p>Notice how the above uses <strong>3 different options</strong>: myoption1, myoption2, myoption3. These take up 3 rows in the database, and require 3 different calls to get_option() when the data is needed. Now, 3 isn&#8217;t very many &#8211; but consider when your plugin uses 30 or 40 different options or presets ( some of mine do ). The potential to clutter up the database and cause a slowdown in your page load times is huge.</p>
<p>Here&#8217;s how you <strong>should</strong> code your options:</p>
<pre class="brush: php; title: ; notranslate">

$myoptions = array( 'option1' =&gt; 'ted', 'option2' =&gt; 'fred', 'option3' =&gt; 'jed');
update_option( 'myoption', $myoptions );
</pre>
<p>And that&#8217;s all there is to it. The update_option function recognizes that you are passing an array and serializes the values for entry in the database. When you need to retrieve the options, simply call get_option into an array variable, and access from there. One call, 40 options. Lotsa overhead saved <img src='http://ilikewordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre class="brush: php; title: ; notranslate">

$myoptions = get_option( 'myoption');

/*
now, $myoptions['option1'] = 'ted', $myoptions['option2'] = 'fred', and so on.
*/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/324/wordpress-plugins-using-the-options-table-properly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Loading WordPress From index.php</title>
		<link>http://ilikewordpress.com/274/loading-wordpress-from-index-php/</link>
		<comments>http://ilikewordpress.com/274/loading-wordpress-from-index-php/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 16:31:13 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[PHP goodies]]></category>
		<category><![CDATA[Troubleshooting WordPress issues]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[index files]]></category>
		<category><![CDATA[url rewriting]]></category>
		<category><![CDATA[wordpress redirect]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=274</guid>
		<description><![CDATA[One of WordPress&#8217; strengths is its attention to SEO-related issues in its core files. One of those issues is the problem of having the home page of the blog indexed twice in the search engines; once under the actual address, http://domain-name.com/index.php, and the other as the plain domain name: http://domain-name.com. Note that this is a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>One of WordPress&#8217; strengths is its attention to SEO-related issues in its core files. One of those issues is the problem of having the home page of the blog indexed twice in the search engines; once under the actual address, <strong><span style="color: #e7847e;">http://domain-name.com/index.php</span></strong>, and the other as the plain domain name: <strong><span style="color: #e7847e;">http://domain-name.com</span></strong>. Note that this is a different problem than the trailing slash problem ( <strong><span style="color: #e7847e;">http://domain-name.com/</span></strong> vs. <strong><span style="color: #e7847e;">http://domain-name.com</span></strong> ) which WordPress also takes care of.</p>
<p>WordPress handles the index.php problem by rewriting requests for <strong><span style="color: #e7847e;">http://domain-name.com/index.php</span></strong> to <strong><span style="color: #e7847e;">http://domain-name.com</span></strong>. All well and good, and beneficial for most sites.</p>
<p>But that rewriting/redirecting caused some problems on a site I was working on yesterday, and once I figured out how, it was a relatively easy fix.<span id="more-274"></span></p>
<p>Here&#8217;s what happened: a client had me upgrade an old installation of SemioLogic&#8217;s version of WordPress to genuine WordPress. While it can be time-consuming, switching over is a fairly straightforward process most of the time. The challenge here was that while most of the site is normal .html files, WordPress is installed at the root level, and is not actually serving the &#8216;home&#8217; page of the site.</p>
<p>So you can maybe see where this is headed: the &#8216;home&#8217; page of the site is index.html. That&#8217;s what comes up when you ask for <strong><span style="color: #e7847e;">http://domain-name.com</span></strong>. The server is set to look for index.html <strong>first</strong>, then index.php if index.html isn&#8217;t there. So to get to the blog, you had to ask for <strong><span style="color: #e7847e;">http://domain-name.com/index.php</span></strong>.</p>
<p>But when you asked for index.php, WordPress, being the dutiful SEO-friendly software that it is, stripped off &#8220;index.php&#8221; from the request, and redirected to <strong><span style="color: #e7847e;">http://domain-name.com</span></strong>.</p>
<p>The server saw the request for the site index file and promptly served up index.html. So you couldn&#8217;t get to the home page of the blog. If you had a specific post URL and typed it in, it worked fine.</p>
<p>Easy fix, says I. Settings -&gt; General, change the WordPress url to <strong><span style="color: #e7847e;">http://domain-name.com/index.php</span></strong> from <strong><span style="color: #e7847e;">http://domain-name.com</span></strong>.</p>
<p>Oops. Now all the permalinks have &#8216;index.php/&#8217; prepended: <strong><span style="color: #e7847e;">http://domain-name.com/index.php/i-want-this-post</span></strong>. Not good, and not intended, especially as the site has been indexed in Google without the index.php in there.</p>
<p>I never did figure out how SemioLogic handled this; obviously it was working before the changeover. Undoubtedly there was an easy setting that disappeared once the SL files were gone. I can only think this issue had come up before and the author of SL provided a workaround.</p>
<p>Thankfully, the coders of WordPress also recognized that there may be a time when rewriting URLs wasn&#8217;t good so they provided a filter to disable or alter the rewrite. Once I found that notation in includes/canonical.php, the fix was a breeze. Write a plugin that disables the redirect to / when /index.php is called for. Here is the entire plugin:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/*
Plugin Name: Index.php fix
Plugin URI: http://ilikewordpress.com/loading-wordpress-from-index-php
Description: This plugin allows a blog installed at root to be addressed by /index.php. Remedies stripping of filename by includes/canonical.php
Author: Steve Johnson
Version: 1.0
Author URI: http://ilikewordpress.com/
*/

/*
*    Applies filter to redirect_canonical to defeat
*    stripping of index.php file
*/

function fix_index( $requested_url ) {
 if ( get_bloginfo( 'url' ) == $requested_url )
 return false;
}
add_filter( 'redirect_canonical', 'fix_index' );

?&gt;
</pre>
<p>And that&#8217;s all there is to it. Now when a browser asks for &#8216;index.php&#8217;, that&#8217;s what it gets instead of a redirection to /.</p>
<p>You could also put this in the functions.php file of a theme, but obviously it wouldn&#8217;t work if the theme were changed.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/274/loading-wordpress-from-index-php/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Just Released &#8211; The Simple Link Cloaker Plugin</title>
		<link>http://ilikewordpress.com/199/just-released-the-simple-link-cloaker-plugin/</link>
		<comments>http://ilikewordpress.com/199/just-released-the-simple-link-cloaker-plugin/#comments</comments>
		<pubDate>Sun, 24 May 2009 23:57:04 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=199</guid>
		<description><![CDATA[Anyone who&#8217;s ever done any affiliate marketing knows the value of &#8216;cloaking&#8217; outgoing affiliate links. First, it can deter the occasional commission thief who will strip out your affiliate code and replace it with their own, robbing you of a well-earned commission. Just as importantly, it makes your links more &#8216;professional&#8217; looking when the visitor [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Anyone who&#8217;s ever done any affiliate marketing knows the value of &#8216;cloaking&#8217; outgoing affiliate links. First, it can deter the occasional commission thief who will strip out your affiliate code and replace it with their own, robbing you of a well-earned commission. Just as importantly, it makes your links more &#8216;professional&#8217; looking when the visitor hovers over the link and looks down at the status bar. They&#8217;re more likely to click if the status bar reads <strong>http://myblog.com/i-want-you-to-go-here</strong> rather than <strong>http://gohere.com/so-i-can?make=some&amp;money</strong>. Agreed?</p>
<p>So, lazy affiliate marketer that I am, I looked around for an easy way to cloak affiliate URLs. <em>Easy </em>being the operative word here. I wanted the system to work with WordPress, I didn&#8217;t want to upload a new PHP file every time I needed a new affiliate link cloaked, didn&#8217;t want to mess with lame &lt;meta refresh=&#8221;99bottlesofbeer&#8221;&gt; meta tags in new files.</p>
<p>I looked around for an existing WordPress plugin that would do the trick, because while I could certainly write one, I didn&#8217;t want to. Like I said, I&#8217;m a <em>lazy</em> affiliate marketer.</p>
<p>I found several &#8211; but they all did WAY more than what I needed. One that I tried even attempted to verify outgoing affiliate URLs &#8211; handy, but it added almost a minute to my posting time, and I didn&#8217;t really need the verification.</p>
<p>Another did everything but my dirty dishes.</p>
<p>Enough was enough. Broke out the PHP editor and sliced my own.</p>
<p>This plugin is simplicity in action. If you&#8217;re at all capable of copying/pasting or writing down a simple URL, and don&#8217;t need fancy tracking and CTR stats, this plugin&#8217;s for you. You&#8217;re not limited to a certain folder name or names, you can make the outgoing URL as long or short as you want it, make it say anything you want. Doesn&#8217;t matter.</p>
<p>You can <a title="Download the Simple Link Cloaker plugin for WordPress" href="/simple-link-cloaker">download it here</a>. If you like it, and it helps you make affiliate money easier, you can <a href="/donate">show your appreciation and buy me a <span style="text-decoration: line-through;">beer</span> Amp</a>. I live on Amps. Especially the Charge lemon-flavored one, and the Tradin&#8217; Paint 3-flavor version.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/199/just-released-the-simple-link-cloaker-plugin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Dealing With Duplicate Content Issues on WordPress Comments Pages</title>
		<link>http://ilikewordpress.com/181/dealing-with-duplicate-content-issues-on-wordpress-comments-pages/</link>
		<comments>http://ilikewordpress.com/181/dealing-with-duplicate-content-issues-on-wordpress-comments-pages/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 20:44:32 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[canonical]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[cpage]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[get_permalink]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress code]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=181</guid>
		<description><![CDATA[I saw a tweet today about WordPress comment page duplication issues related to SEO. While the word is still out as to just how much damage it does or doesn&#8217;t do to your ability to get found by the Great G, this specific problem is relatively easily fixed &#8212; and not by disabling the paged [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I saw a tweet today about WordPress <a href="http://www.thechetan.com/2009/04/comment-page-in-wordpress-27-and-seo/">comment page duplication issues related to SEO</a>. While the word is still out as to just how much damage it does or doesn&#8217;t do to your ability to get found by the <a href="http://google.com">Great G</a>, this specific problem is relatively easily fixed &#8212; and not by disabling the paged comments feature that the Wizards of WordPress have so kindly coded for us (you ever had a post with 300 comments? you&#8217;ll understand what I mean&#8230;).</p>
<p>All it takes is a little bit of code in the functions.php file in your theme. If you&#8217;re uncomfortable editing your theme files or don&#8217;t know how, leave a comment and I&#8217;ll whip up a little plugin. This may be a good time to learn to edit your files, though <img src='http://ilikewordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This little bit of code doesn&#8217;t affect anything but WordPress comment pages. If you use WordPress for something other than a plain-vanilla blog, you may need <a href="http://yoast.com/wordpress/canonical/">the horsepower of Yoast&#8217;s Canonical URLs plugin</a> for WordPress.</p>
<p>So in your functions.php file, insert the following code (I split the echo lines up for clarity, normally they&#8217;d be all on one line):</p>
<pre class="brush: php; title: ; notranslate">
function canonical_for_comments() {
 global $cpage, $post;
 if ( $cpage &gt; 1 ) :
  echo &quot;\n&quot;;
  echo &quot;&lt;link rel='canonical' href='&quot;;
  echo get_permalink( $post-&gt;ID );
  echo &quot;' /&gt;\n&quot;;
 endif;
}
add_action( 'wp_head', 'canonical_for_comments' );
</pre>
<p>Make sure you paste the code before the last ?&gt; characters at the end of the file.</p>
<p>For those of you who care, here&#8217;s a quick explanation of what the above code does &#8212; you&#8217;ll get a short intro into the behind-the-scenes functioning of WordPress.</p>
<p>When a visitor navigates beyond the first page of comments, the variable $cpage contains the page # that&#8217;s being displayed. The $post variable contains all of the information about the post. The function tests to see if we&#8217;re on a comments page greater than 1, if so, it spits out the &lt;link rel=&#8230;./&gt; characters. But where does it spit them?</p>
<p>That&#8217;s controlled by the add_action line. We&#8217;re telling WordPress that when it&#8217;s building the head section (&#8216;wp-head&#8217;), to add our special &#8216;canonical_for_comments&#8217; function.</p>
<p>Simple, easy schmeezy.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/181/dealing-with-duplicate-content-issues-on-wordpress-comments-pages/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>A Colored Tag Cloud For Your WordPress Blog</title>
		<link>http://ilikewordpress.com/168/a-colored-tag-cloud-for-your-wordpress-blog/</link>
		<comments>http://ilikewordpress.com/168/a-colored-tag-cloud-for-your-wordpress-blog/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 05:12:37 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[Widgets widgets]]></category>
		<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[colored tag cloud]]></category>
		<category><![CDATA[tag cloud]]></category>
		<category><![CDATA[tag cloud widget]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=168</guid>
		<description><![CDATA[I needed a colored tag cloud widget, and I couldn&#8217;t find one that I liked. So I cooked up another one. You can see it in action over in the sidebar. You can configure colors, sizes &#8211; you can even use it in your theme instead of as a widget. Or you can do both. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I needed a colored tag cloud widget, and I couldn&#8217;t find one that I liked. So I cooked up another one. You can see it in action over in the sidebar. You can configure colors, sizes &#8211; you can even use it in your theme instead of as a widget. Or you can do both.</p>
<p>See <a href="http://ilikewordpress.com/colored-tag-cloud-for-wordpress-blogs/">the official ILWP Colored Tag Cloud plugin page</a> to download.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/168/a-colored-tag-cloud-for-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twavatar &#8211; Twitter Avatars For Your WordPress Blog</title>
		<link>http://ilikewordpress.com/134/twavatar-twitter-avatars-for-your-wordpress-blog/</link>
		<comments>http://ilikewordpress.com/134/twavatar-twitter-avatars-for-your-wordpress-blog/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 19:40:30 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=134</guid>
		<description><![CDATA[An update: Twitter has seen fit to deprecate (discontinue) the search function that this plugin depended on. Until I can come up with some kind of solution, you should deactivate the plugin if you&#8217;re using it; you might have some unexpected errors. Today is release day for Twavatar &#8211; Twitter Avatars For Your WordPress Blog. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center; padding: 1em; background: #eee; border: 1px dotted #333; margin-left: auto; margin-right: auto; width: 80%; color: red;">An update: Twitter has seen fit to deprecate (discontinue) the search function that this plugin depended on. Until I can come up with some kind of solution, you should deactivate the plugin if you&#8217;re using it; you might have some unexpected errors.</p>
<p>Today is release day for <a href="/twavatar">Twavatar &#8211; Twitter Avatars For Your WordPress Blog</a>.</p>
<p>It is a simple plugin that displays a commenter&#8217;s Twitter profile image in place of the standard WordPress gravatar. If a Twitter image can&#8217;t be found, the regular gravatar is displayed.</p>
<p>Twavatar is nice to twitter &#8211; it only looks once, and if it finds a profile URL, it caches it in your database for future use. Future versions of the plugin will have an expiry time on the cached URL to ensure avatarial freshness.</p>
<p>You can <a href="/twavatar">download the plugin from its page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/134/twavatar-twitter-avatars-for-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>TweetSweetR for WordPress &#8211; a full-featured Twitter plugin for your blog</title>
		<link>http://ilikewordpress.com/115/tweetsweetr-for-wordpress-a-full-featured-twitter-plugin-for-your-blog/</link>
		<comments>http://ilikewordpress.com/115/tweetsweetr-for-wordpress-a-full-featured-twitter-plugin-for-your-blog/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 18:31:45 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[On WordPress]]></category>
		<category><![CDATA[Widgets widgets]]></category>
		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=115</guid>
		<description><![CDATA[UPDATE: 0.6.0 is now out. Latest version add support for substituting Twittter avatar for standard Gravatar. If a Twitter avatar isn&#8217;t found, defaults to standard WP options. UPDATE: Ha! Well, this is embarrassing. TweetSweetR is now at version 0.5.1 already A few months ago, the twitter world was all a-twitter (I know, bad pun) about [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>UPDATE: 0.6.0 is now out. Latest version add support for substituting Twittter avatar for standard Gravatar. If a Twitter avatar isn&#8217;t found, defaults to standard WP options.</p>
<p><span style="text-decoration: line-through;">UPDATE: Ha! Well, this is embarrassing. TweetSweetR is now at version 0.5.1 already</span> <img src='http://ilikewordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>A few months ago, the twitter world was all a-twitter (I know, bad pun) about a WordPress plugin called TweetSuite. I saw it, installed it on a couple of blogs and one notable blog network. It worked okay, but didn&#8217;t really have the features I/we were looking for, and it wouldn&#8217;t run on the network. Then, the plugin kind of dropped off the radar. Maybe the author didn&#8217;t have time to support it (it happens, trust me). Feature and support requests were going unanswered, and it even appears the author stopped using his own plugin! None of this is meant to detract from the plugin &#8211; it fulfilled a need of the Twitter world at the time, and served its purpose and every plugin author has a life beyond plugins.</p>
<p>So rather than wait for updates that might never come, I decided to take what I thought were the best concepts of the plugin, make a few feature additions here and there, modify the execution, and come up with my own.</p>
<p>So, here it is: TweetSweetR in all its <strong>BETA</strong> glory.</p>
<h3>What does TweetSweetR do?</h3>
<p>TweetSweetR provides a number of tools and features to integrate your WordPress blog with your Twitter account. As you post, it automagically grabs a shortened URL from the http://is.gd url-shortening service and displays a badge and &#8216;tweet this post&#8217; link with the shortened URL already included. A visitor clicks the link or the badge and goes to their own twitter home where they can finish adding a tweet.</p>
<p>TweetSweetR periodically searches for mention of the post&#8217;s short url using Twitter&#8217;s search service, and posts a list of tweets that are talking about your post.</p>
<p>TweetSweetR also provides a number of sidebar widgets you can use or not use:</p>
<ul>
<li>MyTweets, a list of your current twitter tweets</li>
<li>MyFavs, a list of your favorited tweets</li>
<li>TwitterTrends, a list of currently trending searches on Twitter</li>
<li>MostTweeted, a list of your most-tweeted blog posts as defined by the number of search results for each short url</li>
</ul>
<p>TweetSweetR updates itself automatically using a scheduled-tasks feature of WordPress. It gathers your latest updates, searches for mentions of your blog posts, grabs new trends &#8212; all in the background so your page loads aren&#8217;t delayed. Searches and updates are throttled to keep you from running afoul of Twitter&#8217;s API restriction of 100 requests per hour. All results are stored in the same database that your blog runs from, and TweetSweetR looks there first for information.</p>
<p>TweetSweetR is still very much in beta-testing mode, and new features are still being added. When TweetSweetR reaches a stable release status, I&#8217;ll add it to the WordPress plugins respository. When that happens, you&#8217;ll be able to automatically update the plugin through your WordPress plugins page.</p>
<p>To download the plugin and see full installation and usage details, please visit <a href="/tweetsweetr-for-wordpress">TweetSweeR for WordPress&#8217;s permanent page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/115/tweetsweetr-for-wordpress-a-full-featured-twitter-plugin-for-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of &#8220;Twitter Avatars In Comments WordPress Plugin&#8221;</title>
		<link>http://ilikewordpress.com/95/review-of-twitter-avatars-in-comments-wordpress-plugin/</link>
		<comments>http://ilikewordpress.com/95/review-of-twitter-avatars-in-comments-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 19:22:10 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[WordPress plugins]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[gravatar]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter avatar]]></category>
		<category><![CDATA[twitter plugin]]></category>

		<guid isPermaLink="false">http://ilikewordpress.com/?p=95</guid>
		<description><![CDATA[Smashing Magazine recently released a WordPress &#8220;plug-in that uses Twitter to show avatars in comments in WordPress blogs&#8221;. While I like the idea, the implementation leaves a little bit to be desired. Comments to the release post indicate that some effort is being made to address the shortcomings in the plugin code, but as yet [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Smashing Magazine recently released a WordPress &#8220;plug-in that uses Twitter to show avatars in comments in WordPress blogs&#8221;.</p>
<p>While I like the idea, the implementation leaves a little bit to be desired. Comments to the release post indicate that some effort is being made to address the shortcomings in the plugin code, but as yet those changes haven&#8217;t been made.</p>
<p>Here&#8217;s why I don&#8217;t recommend that you use this plugin just yet:</p>
<ul>
<li>the Twitter API allows 100 requests per hour. If you have a blog post with 20 comments that gets visited 5 times in one hour, Twitter will cut off further requests</li>
<li>each call to the avatar display requires 2 HTTP requests on the server side (via cURL calls) and one at the client side to download the avatar. Using the previous example of 20 comments, that works out to <strong>sixty </strong>extra HTTP requests for every page load. Completely unacceptable.</li>
<li>the plugin requires that you diddle around with your theme. While that isn&#8217;t a problem with some bloggers, for the majority it is a non-starter. The plugin needs to hook into the appropriate WordPress functions rather than rely on theme changes.</li>
<li>the plugin searches for and displays Twitter avatars first, then falls back to the common gravatar we all know and love (!) then further falls back to a default image. All fine, but no choice is given to the blog owner as to preferred fallback behavior. I would prefer to be able to choose which avatar to display as a default.</li>
<li>searches for Twitter avatars are made on the email address that the commentor enters. *I* don&#8217;t even remember what email address I used when I signed up for Twitter. I would much prefer to see another form field that asks for a Twitter ID. Yes, it&#8217;s an extra field to fill out and implementing it will mean much more work in coding the plugin.</li>
</ul>
<p>So the bottom line is that <em><strong>at this point in time, I don&#8217;t recommend that you use this plugin</strong></em>. If the changes suggested to the developer are made, though, it will definitely bear looking at again.</p>
<p>For more information, you can visit the release post here: <a href="http://www.smashingmagazine.com/2009/01/08/twitter-avatars-in-comments-wordpress-plugin/">Twitter Avatars In Comments WordPress Plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikewordpress.com/95/review-of-twitter-avatars-in-comments-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

