<?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>Web Cash &#187; plugin</title>
	<atom:link href="http://www.earn-web-cash.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.earn-web-cash.com</link>
	<description>Writing, Designing, and Making Money Online</description>
	<lastBuildDate>Sun, 04 Dec 2011 22:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>How to Only Show the Digg Badge for Popular Posts</title>
		<link>http://www.earn-web-cash.com/2008/02/18/digg-badge-popular-posts/</link>
		<comments>http://www.earn-web-cash.com/2008/02/18/digg-badge-popular-posts/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 19:45:09 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/18/digg-badge-popular-posts/</guid>
		<description><![CDATA[Digg can be a great source of traffic and recognition for tech related blogs. Some people take it to the extreme though, and show the &#8220;Digg This&#8221; badge on every article they write. As others have pointed out, this can be counter-productive. People don&#8217;t like to read articles that have just one Digg &#8211; they [...]]]></description>
			<content:encoded><![CDATA[<p>Digg can be a great source of traffic and recognition for tech related blogs.  Some people take it to the extreme though, and show the &#8220;Digg This&#8221; badge on every article they write.</p>
<p>As <a href="http://www.pronetadvertising.com/articles/why-the-digg-button-gets-you-buried-not-dugg11995.html">others have pointed out</a>, this can be counter-productive.  People don&#8217;t like to read articles that have just one Digg &#8211; they seem unpopular.</p>
<p>So here&#8217;s a solution: use the <a href="http://www.earn-web-cash.com/scripts-plugins-and-modules/wp-plugin-digg-badge/">Conditional &#8220;Digg This&#8221; WordPress Plugin</a> to only show the Digg Badge for articles that have a certain number of Diggs.<br />
<span id="more-129"></span></p>
<h5>Why Shouldn&#8217;t You Show the Digg Badge on Every Article?</h5>
<p>It&#8217;s easy enough to plaster the Digg Badge in your template or use a plug-in to add it to every post.  Most of your posts aren&#8217;t going to be popular though.  You&#8217;ll get at most one or two Diggs&#8230; nothing to write home about.</p>
<p>When a user opens your article, he or she might be impressed by &#8220;100 Diggs.&#8221;  He or she definitely won&#8217;t be impressed by &#8220;1 Digg.&#8221;  That&#8217;s a hint that your article wasn&#8217;t anything special &#8211; so why should the reader keep going?</p>
<h5>Using the Plugin to Only Show the Badge on Popular Articles</h5>
<p>The <a href="http://www.earn-web-cash.com/scripts-plugins-and-modules/wp-plugin-digg-badge/">Conditional Digg This</a> plug-in was designed to address this issue.</p>
<p>All you need to do is download the source code, upload it to your plugins directory, unpack the tar.gz, and click &#8220;Activate.&#8221;  You don&#8217;t need to modify any settings or insert anything into your template.  It&#8217;s all automated.</p>
<h5>How Does It Work?</h5>
<p>The basic concept behind the plugin is this:</p>
<ul>
<li>Load a story in your WordPress Blog</li>
<li>Check the Digg API to see how many diggs the article has</li>
<li>If the article has 10 or more diggs, show the badge&#8230;</li>
<li>Otherwise, leave it alone.</li>
</ul>
<p>Originally, I coded the plug-in to use a php function to access the API and check the number of Diggs each article had as it loaded.  This worked perfectly &#8211; but it took a while.  Sometimes, the API is slow to respond.  If the API took 8 seconds to spit back a response, that meant your page would take 8 extra seconds to load up.</p>
<p>Even if the API was responding quickly, this was a problem for the front page and category pages.  At best, the API takes about .25 to .5 seconds to respond &#8211; and with 10-15 checks on a page&#8230; you&#8217;re still waiting a good long time for the page to load.</p>
<h5>Load First, Check the API Later</h5>
<p>The solution I came up with was to use some nifty AJAX to perform the API checking behind the scenes.</p>
<p>The plug-in creates an AJAX request for each article.  It sends information to a php script which accesses the Digg API behind the scenes.  The page loads up instantly and AJAX will quietly do its thing.  When the response is ready, it&#8217;ll change the page to include the Digg This badge if necessary.</p>
<p>So, the next time you want to display a &#8220;Digg This&#8221; badge on your article, think about how many diggs your article has already.  Or, use the <a href="http://www.earn-web-cash.com/scripts-plugins-and-modules/wp-plugin-digg-badge/">Conditional &#8220;Digg This&#8221; WordPress Plugin</a> to automatically add a badge to your popular articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/18/digg-badge-popular-posts/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixing a WP Plugin: Per-Post CSS and JS</title>
		<link>http://www.earn-web-cash.com/2008/02/17/per-post-css-js/</link>
		<comments>http://www.earn-web-cash.com/2008/02/17/per-post-css-js/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 22:18:52 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/17/per-post-css-js/</guid>
		<description><![CDATA[A few weeks ago, I installed the &#8220;Per Post CSS and JS&#8221; plugin for WordPress. This allows you to add a custom field to your post and include extra .css or .js files to link to that individual page. I only realized today &#8211; while testing something else &#8211; that the plugin had been firing [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, I installed the &#8220;Per Post CSS and JS&#8221; plugin for WordPress.  This allows you to add a custom field to your post and include extra .css or .js files to link to that individual page.</p>
<p>I only realized today &#8211; while testing something else &#8211; that the plugin had been firing off warning messages because of an oversight in the code.  Warning messages annoy me, so I decided to fix it up.<br />
<span id="more-124"></span></p>
<h5>Where&#8217;s the Error?</h5>
<p>The plug-in consists of one file &#8211; <a href='http://www.earn-web-cash.com/wp-content/uploads/2008/02/per-post-css.txt' title='Per Post CSS and JS WP Plugin'>per-post-css.php</a>.</p>
<p>Towards the end of the function per_post_css_js, the script loops through any retrieved CSS and JS files.  During these loops, the link tags are added to the head element of the page.</p>
<p>Here&#8217;s the line that deals with CSS stylesheets.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$array_css</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$css</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> 
  <span style="color: #b1b100;">print</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&lt;style type=<span style="color: #000099; font-weight: bold;">\&quot;</span>text/css<span style="color: #000099; font-weight: bold;">\&quot;</span> media=<span style="color: #000099; font-weight: bold;">\&quot;</span>screen<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt; @import url(&quot;</span><span style="color: #339933;">.</span> <span style="color: #000088;">$css</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;); &lt;/style&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Notice anything potentially wrong here?  What happens if there are <strong>no</strong> custom CSS files attached to your page?</p>
<p>Foreach looks for an array ($array_css).  If a value is passed to foreach that is not an array, it&#8217;ll fire off a warning &#8211; and that&#8217;s just what it did.</p>
<p>The fix is simple enough.  Before attempting to iterate the loop, first check to see that $array_css (and later $array_js) is in fact an array.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">is_array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$array_css</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$array_css</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$css</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span> 
		<span style="color: #b1b100;">print</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&lt;style type=<span style="color: #000099; font-weight: bold;">\&quot;</span>text/css<span style="color: #000099; font-weight: bold;">\&quot;</span> media=<span style="color: #000099; font-weight: bold;">\&quot;</span>screen<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt; @import url(&quot;</span><span style="color: #339933;">.</span> <span style="color: #000088;">$css</span> <span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;); &lt;/style&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>It&#8217;s a minor problem that creates some inconsequential warnings&#8230; but it annoyed me so I fixed it.  If you have display_errors turned off in PHP (which I usually do) you won&#8217;t notice the problem either.</p>
<h5>Per Post CSS and JS Updated Source Code</h5>
<p>In the plug-in file, the homepage is listed as <a href="http://www.flog.co.nz">http://www.flog.co.nz</a>.  Oddly enough, I didn&#8217;t see a reference to the script on the page anymore, although the author still updates the page.</p>
<p>When I searched for a new copy of Per Post CSS and JS, I found a listing in a WP Plugin Directory &#8211; which pointed to an old post on flog.co.nz.  That post and the link to the source code are both dead now.  Perhaps they were cleaned up to make room for new content.</p>
<p>Regardless, I&#8217;m going to re-post the <a href='http://www.earn-web-cash.com/wp-content/uploads/2008/02/per-post-css.txt' title='Per Post CSS and JS WP Plugin'>source code for the Per Post CSS and JS WP Plugin</a> here to keep it available.</p>
<p>Kudos and thanks to the original author, Adam Burmister.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/17/per-post-css-js/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Use Custom Stylesheets on a Per Post Basis in WordPress</title>
		<link>http://www.earn-web-cash.com/2008/02/05/per-post-css-wordpress/</link>
		<comments>http://www.earn-web-cash.com/2008/02/05/per-post-css-wordpress/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 01:31:55 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/05/how-to-use-custom-stylesheets-on-a-per-post-basis-in-wordpress/</guid>
		<description><![CDATA[Something I struggled with recently was assigning individual style sheets to posts on this WordPress blog. For example, if I was writing a CSS tutorial I didn&#8217;t want to muck up my general stylesheet with a bunch of styles &#8211; it&#8217;d be nice to write a small stylesheet and attach it only to the specific [...]]]></description>
			<content:encoded><![CDATA[<p>Something I struggled with recently was assigning individual style sheets to posts on this WordPress blog.  For example, if I was writing a CSS tutorial I didn&#8217;t want to muck up my general stylesheet with a bunch of styles &#8211; it&#8217;d be nice to write a small stylesheet and attach it only to the specific post that needs it.</p>
<p>Unfortunately, this isn&#8217;t a built in function of WordPress.  Fortunately, you can add this functionality with a plugin.<br />
<span id="more-100"></span></p>
<h5>Headspace</h5>
<p>I originally accomplished this with the <a href="http://urbangiraffe.com/plugins/headspace/">Headspace plugin</a>.</p>
<p>Headspace is an all in one SEO plugin for WordPress.  It&#8217;s major function is to allow you to add custom titles, tags, and meta descriptions to your WordPress posts.  This should help with your SEO and SERP.</p>
<p>An added bonus is that you can add individual CSS stylesheets and JS scripts to each page.  There&#8217;s an extra field in the writing page where you can add either of these two options.</p>
<p>This part of Headspace worked great.  However, I was having trouble getting the other SEO functions to work.  I was assigning descriptions and titles, but no meta tags were being generated.</p>
<h5>Replacing Headspace</h5>
<p>To fix that problem, I de-activated Headspace and got the <a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/">All In One SEO Pack</a> WordPress Plugin.  It worked great, but that&#8217;s another post altogether.</p>
<p>I didn&#8217;t realize until <strong>after</strong> I had deactivated Headspace that I had also deactivated the custom CSS on a few posts/pages.  I checked the pages and low-and-behold the custom CSS didn&#8217;t exist anymore.</p>
<p>I didn&#8217;t want to re-active Headspace just for this function, so I went off in search of a better solution.</p>
<h5>Per Post CSS and Javascript</h5>
<p>I eventually stumbled on this very simple plugin &#8211; <a href="http://www.flog.co.nz/index.php/journal/per-post-css-js/">Per Post CSS and JS</a>.</p>
<p>It&#8217;s only a few short lines.  It uses the custom fields function of WordPress to add the custom link tags.  You define a CSS or JS field for a post, enter the URL, and the plug-in adds a link tag to the head section of your page.</p>
<p>It&#8217;s quite simple, and if I didn&#8217;t find a suitable script I was going to make one myself.  However, this works perfectly well and I don&#8217;t think I could really expand on it (except maybe creating the CSS and JS fields on the writing screen, instead of using the custom fields) &#8211; so I doubt I&#8217;ll be writing my own plug-in anytime soon.</p>
<p>When it&#8217;s possible, re-use.  Then focus your energy on things you <strong>need</strong> to do yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/05/per-post-css-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Exploring WordPress &#8211; Database Structure Explained</title>
		<link>http://www.earn-web-cash.com/2008/02/03/wordpress-database-structure/</link>
		<comments>http://www.earn-web-cash.com/2008/02/03/wordpress-database-structure/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 15:50:54 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[structure]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/03/wordpress-database-structure/</guid>
		<description><![CDATA[While reading some forums this morning, I came upon an interesting question.  Where is the category information stored in the Wordpress database?

I opened up phpmyadmin, expecting to see a "categories" table.  No dice.  After a few minutes I figured it out - and I decided it might be a good idea to explain how the Wordpress database is structured.]]></description>
			<content:encoded><![CDATA[<p>While reading some forums this morning, I came upon an interesting question.  Where is the category information stored in the WordPress database?</p>
<p>I opened up phpmyadmin, expecting to see a &#8220;categories&#8221; table.  No dice.  After a few minutes I figured it out &#8211; and I decided it might be a good idea to explain how the WordPress database is structured.<br />
<span id="more-97"></span><br />
When I first opened the database, I was impressed with its size.  It&#8217;s made up of only ten tables.  The other CMS I&#8217;ve used (CMS Made Simple) uses dozens of tables &#8211; so this seemed pretty compact.</p>
<p>Part of how this is done is that things are compressed into the pre-existing tables, rather than given their own tables.  As a result you&#8217;ve got a more compact, more efficient database structure &#8211; but not necessarily the most intuitive structure.</p>
<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/02/wordpress-database.png' title='Wordpress Database Structure'><img class="alignright" src='http://www.earn-web-cash.com/wp-content/uploads/2008/02/wordpress-database.thumbnail.png' alt='Wordpress Database Structure' /></a>To the right, you&#8217;ll see an map of the basic database structure.  In the middle is the most important table &#8211; wp_posts.</p>
<h5>Post Information &#8211; wp_posts</h5>
<p>This is the heart and sole of your WordPress blog.  It contains the basic information about each post and this is how other information is linked to your posts.</p>
<p>There is a lot of information here, but the major fields are ID, post_content, and post_title.  The ID is used to link your post to other fields (like comments), and the content and title fields make up the actual post.</p>
<p>That&#8217;s what is read and displayed for the user to read.</p>
<h5>Comments &#8211; wp_comments</h5>
<p>This table is connected to the wp_posts table, and it contains all of the comment and trackback information for your blog.</p>
<p>Each comment has a &#8220;comment_post_ID&#8221; field &#8211; which matches up with the individual ID of the post it is attached to.  There are a number of other fields that contain the comment data &#8211; like comment_author, comment_author_url, and comment_content.</p>
<h5>Category and Tag Information &#8211; wp_terms</h5>
<p>The original question was, &#8220;Where is the category information stored?&#8221;</p>
<p>This used to be in a &#8220;category&#8221; field in the wp_posts table.  However, a more efficient way to do this was to create a new table with all the category information and a third table to link a post with a category &#8211; since each post can have multiple categories.</p>
<p>Each category and tag is defined in the wp_terms field.  This includes the name, an id, and a description.  In the wp_terms_taxonomy field, each &#8220;term&#8221; is defined as either a tag or a category.</p>
<p>Then, the wp_terms_relationships includes two numbers &#8211; a term id and a post id.  By grabbing every term that uses a post&#8217;s id, WordPress can immediately identify all of the appropriate categories and tags to use.</p>
<p>For performance sake (but not necessarily readability), the tags and categories have been made synonymous in the database.  They&#8217;re all &#8220;terms&#8221; &#8211; which cuts down on the number of queries WordPress needs to make to build a page.</p>
<h5>Non-sequitors &#8211; wp_links, wp_users, and wp_options</h5>
<p>The last few tables are non-sequitors.  They aren&#8217;t attached to the wp_posts table, and they define random things about your blog.</p>
<p>For example, wp_links contains the information about links that are displayed in your &#8220;Links&#8221; section&#8230; if you use it.</p>
<p>The wp_users table identifies the user accounts that are registered for your blog.  Chances are that that includes you &#8211; and no one else.  The wp_usermeta table is attached to this, and it includes some options for each user (like whether or not they use the WYSIWYG editor for writing posts).</p>
<p>The only really important table here is wp_options.</p>
<p>This defines all of the major options of your blog &#8211; like the url, the title, the description, etc.  Anything you set in the Dashboard is stored in a row in this table.</p>
<p>This also stores all of the plugin and widget information.  WordPress uses a nifty trick to store widgets &#8211; it simply serializes them and stores them in a textfield in the database.  Then, it can put the widget back together with by deserializing it.</p>
<p>This way a widget can be stored and reconstructed from one database row in one table, rather than creating a whole new table for each widget.  It makes the information in the database pretty unintelligible &#8211; but it cuts down massively on the number of queries needed to create and use the widgets.</p>
<h5>Start Messing Around</h5>
<p>The purpose of this, of course, is to understand the database structure so that you can mess around with it yourself.  That is, after all, the point of open source programs.</p>
<p>So lurk around in the database a bit.  This is very useful information for writing plug-ins that need to interact with the WordPress database.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/03/wordpress-database-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Huzzah Akismet!  Blocking Spam Comments All Day</title>
		<link>http://www.earn-web-cash.com/2008/01/29/akismet-spam/</link>
		<comments>http://www.earn-web-cash.com/2008/01/29/akismet-spam/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 03:39:21 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[trackback]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/29/huzzah-akismet-blocking-spam-comments-all-day/</guid>
		<description><![CDATA[You know your site is finally getting around a bit when you start getting comments.  Spam comments.

I started a (now defunct) website last year, powered by <a href="http://www.wordpress.org">Wordpress</a>.  It never got too popular, and in the beginning I was excited every time I got a "New Comment" or "New Trackback" e-mail.  Then I realized they were mostly all spam.]]></description>
			<content:encoded><![CDATA[<p>You know your site is finally getting around a bit when you start getting comments.  Spam comments.</p>
<p>I started a (now defunct) website last year, powered by <a href="http://www.wordpress.org">WordPress</a>.  It never got too popular, and in the beginning I was excited every time I got a &#8220;New Comment&#8221; or &#8220;New Trackback&#8221; e-mail.  Then I realized they were mostly all spam.<br />
<span id="more-86"></span><br />
A few minutes ago, I checked my e-mail and had a spam comment in my inbox.  I thought, &#8220;Ahh, here comes the spam.&#8221;</p>
<p>When I logged into the dashboard, I spammed the comment and was about to move away.  Then I happened to look at the dashboard again &#8211; and I remembered that I had set up Akismet this time around.</p>
<p>I just added the widget to the left sidebar because I was so impressed.  Akismet apparently blocked 84 spam comments &#8211; and this was the first one that got through.  I&#8217;d say that&#8217;s pretty impressive.</p>
<p>If you&#8217;re running a WordPress blog, or something else that uses comments and can utilize an Akismet plug-in, <strong>do so</strong>.  There&#8217;s nothing more frustrating than wading through spam comments and trackbacks all day long.</p>
<p>Akismet is apparently pretty effective at cutting them down.  A few of them might sift through, but you can never get rid of <strong>all</strong> the spam.  So be happy if you can eliminate 84/85.</p>
<p>You can download the <a href="http://codex.wordpress.org/Akismet">Akismet plugin for WordPress</a>, but all new builds come with Akismet pre-installed.  All you have to do is fill in the Akismet API number &#8211; which you can get for free with a WordPress account.</p>
<p>Happy spam-free comment logs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/29/akismet-spam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

