<?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>Maverick Web Creations &#187; sharethis</title>
	<atom:link href="http://www.maverickwebcreations.com/tag/sharethis/feed" rel="self" type="application/rss+xml" />
	<link>http://www.maverickwebcreations.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 05:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Add reddit Buttons to WordPress</title>
		<link>http://www.maverickwebcreations.com/2008/10/17/how-to-add-reddit-buttons-to-wordpress.html</link>
		<comments>http://www.maverickwebcreations.com/2008/10/17/how-to-add-reddit-buttons-to-wordpress.html#comments</comments>
		<pubDate>Fri, 17 Oct 2008 00:00:58 +0000</pubDate>
		<dc:creator>admin_mwc</dc:creator>
				<category><![CDATA[Wordpress Help]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[sharethis]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[social news]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.maverickwebcreations.com/?p=200</guid>
		<description><![CDATA[<p>reddit, like Digg offers <a href="http://www.reddit.com/buttons/">web site integration buttons</a> for webmasters. The implementation of the reddit buttons is very similar to my previous post on <a href="http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html">how to add Digg buttons to WordPress</a>. In my next post, I will show you how to display Digg and reddit voting buttons to your &#8230; <a href="http://www.maverickwebcreations.com/2008/10/17/how-to-add-reddit-buttons-to-wordpress.html" class="read_more">Read more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>reddit, like Digg offers <a href="http://www.reddit.com/buttons/">web site integration buttons</a> for webmasters. The implementation of the reddit buttons is very similar to my previous post on <a href="http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html">how to add Digg buttons to WordPress</a>. In my next post, I will show you how to display Digg and reddit voting buttons to your WordPress posts at the same time.</p>
<p>For now, let&#8217;s take a look at what reddit has to offer&#8230;</p>
<p>reddit has a larger list of buttons than Digg. For this post, I shall use the button that looks most like the default buttons you see on reddit.com. Again, I selected this button for usability reasons because I want people who are familiar with reddit to feel comforable with the reddit buttons on my web site.</p>
<p><strong>Here&#8217;s How the reddit Button Will Look on Your Web Site&#8230;</strong></p>
<p><img class="alignnone size-medium wp-image-202" title="reddit Button 1" src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-16_153042.png" alt="How to Add reddit Buttons to WordPress" width="47" height="66" /></p>
<p>If your blog post has been submitted to reddit, you should see a reddit number and a “reddit” text in your reddit button.</p>
<p><img class="alignnone size-medium wp-image-201" title="reddit button 2" src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-16_153125.png" alt="How to Add reddit Buttons to WordPress" width="47" height="66" /></p>
<p>If you or someone else has not submitted your blog post to reddit, you won’t see any redditnumber but you will see the option to submit your blog post to reddit.</p>
<p><strong>reddit&#8217;s Integration Code</strong></p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.reddit.com/button.js?t=2&quot;&gt;&lt;/script&gt;
&lt;script type='text/javascript'&gt;reddit_url='[URL]'&lt;/script&gt;
&lt;script type='text/javascript'&gt;reddit_title='[TITLE]'&lt;/script&gt;
</pre>
<p><strong>WordPress Default Theme&#8217;s index.php Template</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p><strong>What We Need to Do</strong></p>
<p>We need to replace reddit integration code&#8217;s <strong>[URL]</strong> and <strong>[TITLE]</strong> with WordPress&#8217; <strong>&lt;?php the_permalink() ?&gt;</strong> and <strong>&lt;?php the_title(); ?&gt; </strong> respectively somewhere within the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p><strong>Basic Example of reddit Integration with WordPress</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.reddit.com/button.js?t=2&quot;&gt;&lt;/script&gt;
		&lt;script type='text/javascript'&gt;reddit_url='&lt;?php the_permalink() ?&gt;'&lt;/script&gt;
		&lt;script type='text/javascript'&gt;reddit_title='&lt;?php the_title(); ?&gt;'&lt;/script&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>This alone wouldn&#8217;t look good on your web site. We need some CSS style to spice things up!</p>
<p><strong>reddit Integration with WordPress with HTML and CSS</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;div class=&quot;social_news&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.reddit.com/button.js?t=2&quot;&gt;&lt;/script&gt;
&lt;script type='text/javascript'&gt;reddit_url='[URL]'&lt;/script&gt;
&lt;script type='text/javascript'&gt;reddit_title='[TITLE]'&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="brush: css; title: ; notranslate">
.social_news
{
	margin: 0px 0px 0px 10px;
	padding: 0px;
	float: right;
}
</pre>
<pre class="brush: css; title: ; notranslate">
.social_news
{
	margin: 0px 10px 0px 0px;
	padding: 0px;
	float: left;
}
</pre>
<p>Wrap the reddit code with a DIV class. You may choose to align the DIV class left or right but I think it looks better on the right.</p>
<p>Here’s the full source code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;div class=&quot;social_news&quot;&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;http://www.reddit.com/button.js?t=2&quot;&gt;&lt;/script&gt;
		&lt;script type='text/javascript'&gt;reddit_url='&lt;?php the_permalink() ?&gt;'&lt;/script&gt;
		&lt;script type='text/javascript'&gt;reddit_title='&lt;?php the_title(); ?&gt;'&lt;/script&gt;
		&lt;/div&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>You may apply this modification to your WordPress theme’s single.php and page.php or any other template that has the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p><strong>A WordPress Plugin Alternative: Digg &#038; Reddit Me Plugin</strong></p>
<p>If you don’t want to edit your WordPress theme files, try using the <a href="http://www.michelem.org/wordpress-plugin-digg-reddit-me/">Digg &#038; Reddit Me plugin</a>. I personally think it would be too much of a hassle to manually insert the code into each post if I were to use this plugin but it really depends on your preferences and needs for your WordPress blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maverickwebcreations.com/2008/10/17/how-to-add-reddit-buttons-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Add Digg Buttons to WordPress</title>
		<link>http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html</link>
		<comments>http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html#comments</comments>
		<pubDate>Thu, 16 Oct 2008 02:24:50 +0000</pubDate>
		<dc:creator>admin_mwc</dc:creator>
				<category><![CDATA[Wordpress Help]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[sharethis]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[social news]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://www.maverickwebcreations.com/?p=184</guid>
		<description><![CDATA[<p>On <a href="http://digg.com/tools/integrate">Digg.com&#8217;s Tools/Integrate page,</a> there are 3 types of Digg buttons available for us to display on our web sites:</p>
&#8220;Digg This&#8221; with Submit Capability
Simple &#8220;Digg This&#8221; with Digg Count (original version)
Custom Submission-Only Button
<p>I think the 1st option makes the most sense. I want a Digg voting &#8230; <a href="http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html" class="read_more">Read more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>On <a href="http://digg.com/tools/integrate">Digg.com&#8217;s Tools/Integrate page,</a> there are 3 types of Digg buttons available for us to display on our web sites:</p>
<ul>
<li>&#8220;Digg This&#8221; with Submit Capability</li>
<li>Simple &#8220;Digg This&#8221; with Digg Count (original version)</li>
<li>Custom Submission-Only Button</li>
</ul>
<p>I think the 1st option makes the most sense. I want a Digg voting button on all my WordPress posts. If I only want a Digg submission button, I can simply use <a href="http://sharethis.com/">ShareThis</a>, which takes up less space.</p>
<p><strong>Here&#8217;s How the &#8220;Digg This&#8221; with Submit Capability Digg Button Will Look on Your Web Site&#8230;</strong></p>
<p><img class="alignnone size-medium wp-image-185" title="Digg Button 1" src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-16_101240.png" alt="How to Add Digg Buttons to WordPress" width="62" height="91" /></p>
<p>If your blog post has been submitted to Digg, you should see a Digg number and a &#8220;digg it&#8221; text in your Digg button.</p>
<p><img class="alignnone size-medium wp-image-186" title="Digg Button 2" src="http://www.maverickwebcreations.com/wp-content/uploads/2008/10/2008-10-16_101203.png" alt="How to Add Digg Buttons to WordPress" width="60" height="86" /></p>
<p>If you or someone else has not submitted your blog post to Digg, you won&#8217;t see any Digg number but you will see the option to submit your blog post to Digg.</p>
<p>I would refrain from using another style of Digg buttons because this style is consistent with the Digg buttons on Digg.com. I would not want to confuse my readers by using an Digg button style that they are not used to.</p>
<p><strong>Digg&#8217;s Integration Code</strong></p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
digg_url = 'WEBSITE_URL';
&lt;/script&gt;
&lt;script src=&quot;http://digg.com/tools/diggthis.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p><strong>WordPress Default Theme&#8217;s index.php Template</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p><strong>What We Need to Do</strong></p>
<p>We need to replace Digg integration code&#8217;s <strong>WEBSITE_URL</strong> with WordPress&#8217; <strong>&lt;?php the_permalink() ?&gt;</strong> somewhere within the  <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p><strong>Basic Example of Digg Integration with WordPress</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		digg_url = '&lt;?php the_permalink() ?&gt;';
		&lt;/script&gt;
		&lt;script src=&quot;http://digg.com/tools/diggthis.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>The problem with this basic example is it would look like rubbish in your WordPress blog. A little CSS and HTML is required to display it properly.</p>
<p><strong>Digg Integration with WordPress with HTML and CSS</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;div class=&quot;social_news&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
digg_url = '&lt;?php the_permalink() ?&gt;';
&lt;/script&gt;
&lt;script src=&quot;http://digg.com/tools/diggthis.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="brush: css; title: ; notranslate">
.social_news
{
	margin: 0px 0px 0px 10px;
	padding: 0px;
	float: right;
}
</pre>
<pre class="brush: css; title: ; notranslate">
.social_news
{
	margin: 0px 10px 0px 0px;
	padding: 0px;
	float: left;
}
</pre>
<p>Wrap the Digg code with a DIV class. You may choose to align the DIV class left or right but I think it looks better on the right.</p>
<p>Here&#8217;s the full source code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;div class=&quot;social_news&quot;&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		digg_url = '&lt;?php the_permalink() ?&gt;';
		&lt;/script&gt;
		&lt;script src=&quot;http://digg.com/tools/diggthis.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
		&lt;/div&gt;
		&lt;h2&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
		&lt;small&gt;&lt;?php the_time('F jS, Y') ?&gt; &lt;!-- by &lt;?php the_author() ?&gt; --&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;
		&lt;/div&gt;
		&lt;p class=&quot;postmetadata&quot;&gt;&lt;?php the_tags('Tags: ', ', ', '&lt;br /&gt;'); ?&gt; Posted in &lt;?php the_category(', ') ?&gt; | &lt;?php edit_post_link('Edit', '', ' | '); ?&gt;  &lt;?php comments_popup_link('No Comments &amp;#187;', '1 Comment &amp;#187;', '% Comments &amp;#187;'); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>You may apply this modification to your WordPress theme&#8217;s single.php and page.php or any other template that has the <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a>.</p>
<p><strong>A WordPress Plugin Alternative: Digg &#038; Reddit Me Plugin</strong></p>
<p>If you don&#8217;t want to edit your WordPress theme files, try using the <a href="http://www.michelem.org/wordpress-plugin-digg-reddit-me/">Digg &amp; Reddit Me plugin</a>. I personally think it would be too much of a hassle to manually insert the code into each post if I were to use this plugin but it really depends on your preferences and needs for your WordPress blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.maverickwebcreations.com/2008/10/16/how-to-add-digg-buttons-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Favourite WordPress Plugins for 2008</title>
		<link>http://www.maverickwebcreations.com/2008/06/19/my-favourite-wordpress-plugins-for-2008.html</link>
		<comments>http://www.maverickwebcreations.com/2008/06/19/my-favourite-wordpress-plugins-for-2008.html#comments</comments>
		<pubDate>Thu, 19 Jun 2008 01:52:24 +0000</pubDate>
		<dc:creator>admin_mwc</dc:creator>
				<category><![CDATA[Wordpress Help]]></category>
		<category><![CDATA[All in One SEO Pack]]></category>
		<category><![CDATA[FeedBurner FeedSmith]]></category>
		<category><![CDATA[sharethis]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[WP-reCAPTCHA]]></category>
		<category><![CDATA[Zemanta]]></category>
		<guid isPermaLink="false">http://www.vincentrich.com/?p=467</guid>
		<description><![CDATA[<p>Last year, I posted a list of my <a href="http://www.vincentrich.com/2007/01/18/my-favourite-wordpress-plugins.html">favourite WordPress plugins</a>. Today, I use a slightly different lineup of WordPress plugins because I have found better plugins to replace some of the older plugins I used and the latest WordPress has made certain plugins obsolete.</p>
<p><strong>The 2007 WordPress Plugin </strong>&#8230; <a href="http://www.maverickwebcreations.com/2008/06/19/my-favourite-wordpress-plugins-for-2008.html" class="read_more">Read more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>Last year, I posted a list of my <a href="http://www.vincentrich.com/2007/01/18/my-favourite-wordpress-plugins.html">favourite WordPress plugins</a>. Today, I use a slightly different lineup of WordPress plugins because I have found better plugins to replace some of the older plugins I used and the latest WordPress has made certain plugins obsolete.</p>
<p><strong>The 2007 WordPress Plugin List</strong></p>
<ol>
<li>Akismet &#8211; Default WordPress plugin but worth keeping.</li>
<li>WordPress Database Backup &#8211; Default WordPress plugin but worth keeping.</li>
<li><a href="http://www.vincentrich.com/recommends/similar-posts.php">Similar Posts</a> &#8211; This plugin now requires an additional plugin to work. You may find out more by visiting their wb site.<a href="http://www.vincentrich.com/recommends/similar-posts.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/subscribe-to-comments.php">Subscribe To Comments</a></li>
<li><a href="http://www.vincentrich.com/recommends/math-comment-spam-protection.php">Math Comment Spam Protection</a> &#8211; Prefer to use word verification spam protection like <a href="http://www.vincentrich.com/recommends/WP-reCAPTCHA.php">WP-reCAPTCHA</a>. Some spam bots have figured out how to do some simple math calculations. 1 + 1 = 2 isn&#8217;t hard for them to figure out.<a href="http://www.vincentrich.com/recommends/math-comment-spam-protection.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/simple-trackback-validation.php">Simple Trackback Validation</a></li>
<li><a href="http://www.vincentrich.com/recommends/social-bookmark-creator.php">Social Bookmark Creator</a> &#8211; <a href="http://www.vincentrich.com/recommends/sharethis.php">ShareThis</a> is an upgrade of this plugin.<a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/ultimate-tag-warrior.php">Ultimate Tag Warrior</a> &#8211; Obsolete now because WordPress now has a built-in tagging feature.<a href="http://www.vincentrich.com/recommends/ultimate-tag-warrior.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/another-wordpress-meta-plugin.php">Another WordPress Meta Plugin</a> &#8211; <a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php">All in One SEO Pack</a> is an upgrade of this plugin.<a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/feedburner-feed-replacement.php">Feedburner Feed Replacement</a> &#8211; <a href="http://www.vincentrich.com/recommends/feedburner-feedsmith.php">FeedBurner FeedSmith</a> is an upgrade of this plugin.<a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/feed-control.php">Feed Control</a></li>
<li><a href="http://www.vincentrich.com/recommends/filosofo-home-page-control.php">Filosofo Home-Page Control</a> &#8211; Still works way better than the default WordPress feature because you do not need to install your blog in a folder like &#8220;/blog&#8221; to display your posts in the &#8220;/blog&#8221; folder.<a href="http://www.vincentrich.com/recommends/filosofo-home-page-control.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/my-page-order.php">My Page Order</a></li>
<li><a href="http://www.vincentrich.com/recommends/google-sitemaps.php">Google Sitemaps</a></li>
<li><a href="http://www.vincentrich.com/recommends/smart-archives.php">Smart Archives</a></li>
<li><a href="http://www.vincentrich.com/recommends/monthchunks.php">monthchunks</a> &#8211; Removed because I do not want too many outgoing links on my web site.<a href="http://www.vincentrich.com/recommends/monthchunks.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/wordtube.php">wordTube</a> &#8211; Still has a place for the playing of FLV videos and MP3s.<a href="http://www.vincentrich.com/recommends/wordtube.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/wp-contactform.php">WP-ContactForm</a></li>
</ol>
<p><strong>The 2008 WordPress Plugin List</strong></p>
<ol>
<li>Akismet</li>
<li>WordPress Database Backup</li>
<li><a href="http://www.vincentrich.com/recommends/similar-posts.php">Similar Posts</a></li>
<li><a href="http://www.vincentrich.com/recommends/subscribe-to-comments.php">Subscribe To Comments</a></li>
<li><a href="http://www.vincentrich.com/recommends/simple-trackback-validation.php">Simple Trackback Validation</a></li>
<li><a href="http://www.vincentrich.com/recommends/feed-control.php">Feed Control</a></li>
<li><a href="http://www.vincentrich.com/recommends/filosofo-home-page-control.php">Filosofo Home-Page Control</a></li>
<li><a href="http://www.vincentrich.com/recommends/my-page-order.php">My Page Order</a></li>
<li><a href="http://www.vincentrich.com/recommends/google-sitemaps.php">Google Sitemaps</a></li>
<li><a href="http://www.vincentrich.com/recommends/smart-archives.php">Smart Archives</a> &#8211; There should be better ones available.<a href="http://www.vincentrich.com/recommends/smart-archives.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/wordtube.php">wordTube</a></li>
<li><a href="http://www.vincentrich.com/recommends/wp-contactform.php">WP-ContactForm</a> &#8211; There should be better ones available.<a href="http://www.vincentrich.com/recommends/smart-archives.php"><br />
</a></li>
<li><a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php">All in One SEO Pack</a> &#8211; Replaces the <a href="http://www.vincentrich.com/recommends/another-wordpress-meta-plugin.php">Another WordPress Meta Plugin</a> and SEO Title Tag plugins.</li>
<li><a href="http://www.vincentrich.com/recommends/feedburner-feedsmith.php">FeedBurner FeedSmith</a> &#8211; Replaces the <a href="http://www.vincentrich.com/recommends/feedburner-feed-replacement.php">Feedburner Feed Replacement</a> plugin.</li>
<li><a href="http://www.vincentrich.com/recommends/sharethis.php">ShareThis</a> &#8211; Replaces the <a href="http://www.vincentrich.com/recommends/social-bookmark-creator.php">Social Bookmark Creator</a> plugin.</li>
<li><a href="http://www.vincentrich.com/recommends/WP-reCAPTCHA.php">WP-reCAPTCHA</a> &#8211; Replaces the <a href="http://www.vincentrich.com/recommends/math-comment-spam-protection.php">Math Comment Spam Protection</a> plugin. You need to sign up for an account and enter the keys to use this plugin. This plugin has an additional email address protection feature.</li>
<li><a href="http://www.vincentrich.com/recommends/zemanta.php">Zemanta</a> &#8211; A great blogging helper tool that lets you find similar content to the post you are creating.</li>
<li><a href="http://www.vincentrich.com/recommends/google-to-yahoo-sitemap.php">Google to Yahoo Sitemap Converter</a> &#8211; This is not actually a plugin but a normal PHP script, which needs to be run on a regular basis via a cron job. It will be obsolete soon once Yahoo and MSN adopt Google&#8217;s sitemap standards.</li>
</ol>
<p>Happy blogging!<a href="http://www.vincentrich.com/recommends/all-in-one-seo-pack.php"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.maverickwebcreations.com/2008/06/19/my-favourite-wordpress-plugins-for-2008.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

