<?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>Blog Success Journal &#187; WordPress Tips &amp; Advice</title>
	<atom:link href="http://www.blogsuccessjournal.com/category/blog-tips-and-advice/wordpress-tips-advice/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogsuccessjournal.com</link>
	<description>How to Start a Blog and Make Money Online</description>
	<lastBuildDate>Mon, 06 Sep 2010 22:08:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Seeing Weird Characters On Your Blog? Here’s How To Fix Your WordPress Character Encoding (Latin1 to UTF8)</title>
		<link>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/seeing-weird-characters-on-blog-how-to-fix-wordpress-character-encoding-latin1-to-utf8/</link>
		<comments>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/seeing-weird-characters-on-blog-how-to-fix-wordpress-character-encoding-latin1-to-utf8/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 14:12:23 +0000</pubDate>
		<dc:creator>Dan and Jennifer</dc:creator>
				<category><![CDATA[WordPress Tips & Advice]]></category>
		<category><![CDATA[character encoding]]></category>
		<category><![CDATA[latin1]]></category>
		<category><![CDATA[utf8]]></category>
		<category><![CDATA[weird characters]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.blogsuccessjournal.com/?p=377</guid>
		<description><![CDATA[Most people don't start looking for "how to convert my Wordpress character encoding from Latin1 to UTF8". Nope, not at first, but they often end up here. Usually it begins something like...]]></description>
			<content:encoded><![CDATA[<p>Most people don&#8217;t start looking for &#8220;how to convert my WordPress character encoding from Latin1 to UTF8&#8243;. Nope, not at first, but they often end up here. Usually it begins something like&#8230;</p>
<ul>
<li>&#8220;what are all these weird characters suddenly showing up all over my blog: Â â €™ ¢?&#8221;</li>
<li>&#8220;I just upgraded my WordPress and now I see funny characters all over my posts &#8211; what gives?&#8221;</li>
<li>&#8220;I just moved my blog to a new web host and now I see funny characters all over my posts &#8211; help&#8221;</li>
</ul>
<p>I know, because we&#8217;ve been there&#8230; searching everywhere for a way to convert the data from one character set to another.</p>
<p>And most of the solutions we&#8217;ve found online have not been very helpful&#8230; stabs in the dark on average. The notable exceptions were these 2 very helpful posts in a sea of really scary guesses&#8230; <a href="http://hexmen.com/blog/2008/07/mysql-latin1-utf8-wordpress-upgrade/" target="_blank">MySQL latin1 → utf8 (WordPress upgrade)</a> and <a href="http://joemaller.com/1328/fixing-mixed-encoding-mysql-dumpfiles-with-wordpress/" target="_blank">Fixing mixed-encoding MySQL dumpfiles with WordPress</a>.</p>
<p>The real problem is, I was asking the wrong question, so I kept finding solutions that didn&#8217;t work. Until now.</p>
<p>So let&#8217;s take a step back and better understand the problem&#8230;</p>
<h3>What causes those funny characters in your WordPress posts upon upgrade / migration / whatever?</h3>
<p>It&#8217;s a character encoding thing, and I won&#8217;t go into too much detail on it, but suffice to say: WordPress stores your content in a MySQL database, encoded in a character set called UTF8.</p>
<p>But if you installed your WordPress site before WordPress 2.3 (yeah, a while back), at that time WordPress didn&#8217;t specify that default character set when creating its storage tables (posts, etc.)&#8230; so the tables were created with whatever the default character set was in the MySQL installation. As it happens, back then it was Latin1.</p>
<p>&#8220;Yeah, so what&#8221; you say. Well, WordPress is still expecting the content to be in UTF8, which is why you&#8217;ll occasionally see those funny characters on your blog&#8230; Â â €™ ¢?</p>
<p>Sure, there&#8217;s a &#8220;fix&#8221;  for that (read: duct tape patch)&#8230; you can just tell WordPress in it&#8217;s wp-config.php file that your data is stored in Latin1, and those funny characters won&#8217;t show any more.</p>
<blockquote>
<pre>define('DB_CHARSET', 'latin1');</pre>
</blockquote>
<p>But you&#8217;ve still got a database created with Latin1 encoding, storing your UTF8 data. Which in some cases will start causing you problems &#8211; such as when we tried to upgrade to WordPress 3 and <a title="WordPress Multisite... Should You Or Shouldn’t You?" href="http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/tutorial-wordpress-multisite-should-you-or-shouldnt-you/">enable WordPress MultiSite</a>, and it will fail over and over again with no discernible error messages.</p>
<h3>So how do you convert that data from Latin1 to UTF8?</h3>
<p>Trick is, the content is (and still was back then) stored/encoded in UTF8&#8230; but MySQL &#8220;thinks&#8221; it&#8217;s in Latin1 because that&#8217;s how the tables were created.</p>
<p>So the better question is&#8230; how can you extract that UTF8 data from your MySQL database without corrupting it when MySQL dutifully attempts to convert it to UTF8 for you on export&#8230; essentially attempting to convert something that doesn&#8217;t need converting.</p>
<h3>So how do you fix the Latin1 encoding, a.k.a. convert it to UTF8?</h3>
<p>This situation can be fixed quite easily with just a few Linux commands performed on the server. Yes, it could technically be done through CPANEL &amp; phpMyAdmin and using Windows tools to edit your data, but that&#8217;s far more likely to corrupt it. Your data is much less likely do get corrupted in this way.</p>
<p>Note: the fix below assumes at least a very basic familiarity with Linux (UNIX) and the ability to connect to your server command line (Telnet or ideally SSH) and run a few basic command.</p>
<p>&#8220;Whoa, what&#8217;s that?&#8221;, you say. Never fear, if you are not comfortable doing this, it&#8217;s likely that your web host will do it for you &#8211; the procedure is very quick and simple for someone familiar with these commands.</p>
<p>Also, if done correctly the approach below will create a whole new &#8220;clean&#8221; database, it will NOT change/fix/mangle your current database. That means you&#8217;ll be able to literally just edit the WordPress wp-config.php and &#8220;point&#8221; your WordPress from the old database to the fresh, clean new one. And you should be good to go.</p>
<p>That&#8217;s the tricky part.</p>
<p><em>Disclaimers: The following assumes at least a basic understanding of MySQL and WordPress config files and export functions. There is absolutely no warranty or guarantee of accuracy with anything you read here (or pretty much anywhere, lol). You and only you are responsible for any damage to your database, WordPress installation, mental health, ego, etc.  as a results of following these or any other suggested directions. Also, look both ways before crossing the street, and be advised the beverage you are about to enjoy may be hot, and never spit up-wind.</em></p>
<h3>The actual step-by-step WordPress / MySQL fix&#8230;</h3>
<h4>1. Back up all your stuff first (likely using phpMyAdmin / CPANEL)</h4>
<p>Before doing any of the following it strongly encouraged to back up all your data and files. Just to be safe. At the very least, your full database and the WordPress config file: wp-config.php</p>
<h4>2. Note the settings that your WordPress is currently using (from wp-config.php)</h4>
<p>Specifically, your MySQL database configuration, including DB_NAME, DB_USER, DB_PASSWORD, and also DB_CHARSET and DB_COLLATE</p>
<blockquote>
<pre>// ** MySQL settings - You can get this info from your web host ** //

/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');

/** MySQL database username */
define('DB_USER', 'username_here');

/** MySQL database password */
define('DB_PASSWORD', 'password_here');</pre>
</blockquote>
<h4>3. Create a new MySQL database and create a new user with full privileges to that new database (both using phpMyAdmin)</h4>
<p>After you export and &#8220;clean&#8221; you current data, you&#8217;re going to import it into this new database. Then you&#8217;ll be using this new database going forward.</p>
<h4>4. Export your current WordPress database</h4>
<p>The following exports all your data into a single text file (exp-my-database-latin1.sql).</p>
<p><code>mysqldump --opt --default-character-set=latin1 --skip-extended-insert --user my_db_user_here --password my_db_name_here -r exp-my-database-latin1.sql --log-error=log-mysqldump-my-database.txt</code></p>
<h4>5. Change the character set in the output file (to the correct one)</h4>
<p><code>replace "CHARSET=latin1" "CHARSET=utf8" "SET NAMES latin1" "SET NAMES utf8" &lt; exp-my-database-latin1.sql &gt; exp-my-database-utf8.sql</code></p>
<h4>6. Run a compare script to sanity check your changes</h4>
<p><code>diff exp-my-database-latin1.sql exp-my-database-utf8.sql</code></p>
<h4>7. Import the cleaned data into the NEW database</h4>
<p><code>mysql --default-character-set=utf8 --user=my_db_user_here --password='my_password_goes_here' my_db_name_here &lt; exp-my-database-utf8.sql</code></p>
<h4>8. Update your WordPress config to point at the shiny, clean, new database</h4>
<p>Just update your wp-config.php file with the database name, login, and password of the clean, shiny new database.</p>
<p>Also, update your encoding settings in wp-config.php to reflect the new UTF character set:</p>
<blockquote>
<pre>/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');</pre>
</blockquote>
<h4>9. Test your changes&#8230; browse your website thoroughly and look for those funny characters</h4>
<p>If it didn&#8217;t &#8220;work&#8221;, you&#8217;ll have funny characters all over your posts; they&#8217;ll be quite obvious as you browse 10 to 20 posts looking for them.</p>
<p>That&#8217;s it, you should now be able to pull up your website and enjoy the yummy UTF8 goodness, no more Latin1.</p>
<p><strong>IF for whatever reason you need to back out this change</strong>, that&#8217;s very easy to do&#8230; just point your WordPress back to the original database (that you didn&#8217;t mess with).</p>
<p>To do that, just edit your wp-config.php file and restore the information you noted in step 1: DB_NAME, DB_USER, DB_PASSWORD, and also DB_CHARSET and DB_COLLATE. Then bring up your website and all should be good again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/seeing-weird-characters-on-blog-how-to-fix-wordpress-character-encoding-latin1-to-utf8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Multisite&#8230; Should You Or Shouldn&#8217;t You?</title>
		<link>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/tutorial-wordpress-multisite-should-you-or-shouldnt-you/</link>
		<comments>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/tutorial-wordpress-multisite-should-you-or-shouldnt-you/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 17:02:34 +0000</pubDate>
		<dc:creator>Dan and Jennifer</dc:creator>
				<category><![CDATA[WordPress Tips & Advice]]></category>
		<category><![CDATA[manage wordpress]]></category>
		<category><![CDATA[upgrade wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress auto install]]></category>
		<category><![CDATA[wordpress mu]]></category>
		<category><![CDATA[wordpress multisite]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress tutorial]]></category>

		<guid isPermaLink="false">http://www.blogsuccessjournal.com/?p=332</guid>
		<description><![CDATA[Most anyone who&#8217;s started a blog has at some point felt the urge to start yet another blog &#8211; on some different topic or another. You know, we may be passionate about something, but that doesn&#8217;t mean we can&#8217;t be passionate about other thins as well. For example, we started Ask Dan &#38; Jennifer to [...]]]></description>
			<content:encoded><![CDATA[<p>Most anyone who&#8217;s <a title="How to Start a Blog and Make Money Online" href="http://www.blogsuccessjournal.com/blog-tips-and-advice/how-to-start-a-blog/how-to-start-a-blog-and-make-money-online-in-10-easy-steps/">started a blog</a> has at some point felt the urge to start yet another blog &#8211; on some different topic or another. You know, we may be passionate about something, but that doesn&#8217;t mean we can&#8217;t be passionate about other thins as well.</p>
<p>For example, we started <a title="Love &amp; Sex Videos, Tips &amp; Advice from Ask Dan &amp; Jennifer" href="http://www.askdanandjennifer.com/" target="_blank">Ask Dan &amp; Jennifer</a> to focus on all topics love &amp; sex, but not long thereafter we also started <a title="How To Start A Blog &amp; Make Money Online" href="http://www.blogsuccessjournal.com" target="_self">Blog Success Journal</a> to share all the fun stuff we were learning about blogging. And a while after that we kicked off yet another site, <a title="Personal Development: Mind, Body, Spirit, Wealth from Today Is That Day" href="http://www.todayisthatday.com" target="_blank">Today Is That Day</a>, which is about all topics personal development.</p>
<p>See the trend? They&#8217;re multiplying!</p>
<h3>So what&#8217;s the problem with starting multiple blogs?</h3>
<p>Nothing really, it&#8217;s a great idea and in some cases works great, i.e. for us it&#8217;s a great thing. But even we have to be careful in balancing our time and effort between the 3 sites&#8230; you only have so much focused time you can invest every day.</p>
<p>Then there are the technical gotchas: managing the tech behind all those websites. Let&#8217;s say you have a great web host and they keep your server running smoothly (<a title="Web Hosting Review – Why We Recommend This Web Host To Our Own Friends And Family" href="http://www.blogsuccessjournal.com/blog-tips-and-advice/web-hosting-reviews/blog-hosting-review-hostgator/">here&#8217;s the ONLY web host we recommend if you&#8217;re just getting started</a>).</p>
<p>But you still need to install and run your website software, which for most blogs is (and really should be) WordPress. And until recently, you could only run 1 single blog / website from a WordPress installation. That means that every time you wanted to create a new blog / website  you had to do a brand new WordPress install&#8230; which leaves you with a bunch of WordPress installs to run. We have about 10 WordPress installs at this point, but more on that.</p>
<h3>OK, so what&#8217;s the problem with running multiple WordPress installs?</h3>
<p>No big deal right? Sure it may take 30 minutes to get it up and running, but that&#8217;s just the &#8220;down payment&#8221;; here&#8217;s where it gets hairy: you&#8217;ll have to maintain yet another new WordPress install going forward. That means regular WordPress updates, installing and configuring all the required plugins, updating those plugins regularly, etc. Pretty soon you&#8217;re a support slave to your several sites &#8211; argh! If only there was a better way&#8230;</p>
<h3>So what is WordPress Multisite (formerly known as WordPress MU)?</h3>
<p>Great news.. now there IS a better way! As of WordPress 3.0, the previously separate project called WordPress MU (WordPress Multi-User) has been fully integrated into WordPress so now it&#8217;s much easier to install and manage for the rest of us.</p>
<p>So that means that when you install WordPress you can now choose to install as a single site, OR create a &#8220;network&#8221; &#8211; meaning you can run and manage all your WordPress websites from one place. Awesome!</p>
<h3>Benefits of WordPress Multisite over many standalone WordPress installations</h3>
<h4>1.) One WordPress is much easier to manage than 10 = better use of your valuable time</h4>
<p>Installing, configuring, managing, and upgrading one instance of WordPress and all its plugins at one time for all your websites is a GOOD THING&#8230; much easier for you to do and keep track of than say, 10 WordPress installs. And when managing a system is easy and straightforward, you&#8217;re much more likely to do it right and do it consistently. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Time, friends, is the most valuable commodity you will ever have. You don&#8217;t so much spend your time as you invest it. And as the stock market has shown us all, some investments net better returns than others&#8230;</p>
<blockquote><p><em>“Dost thou love life? Then do not squander time, for that is the stuff that life is made of.”<br />
– Benjamin Franklin, </em><a title="Inspirational &amp; Famous Quotes from Today Is That Day" href="http://www.todayisthatday.com/inspirational-quotes/" target="_blank"><em>Inspirational Quotes from Today Is That Day</em></a></p></blockquote>
<blockquote><p><em>“To spend time is to pass it in a specified manner. To waste time is to expend it thoughtlessly or carelessly. We all have time to either spend or waste and it is our decision what to do with it. But once passed, it is gone forever.”<br />
– Bruce Lee, <a title="Inspirational &amp; Famous Quotes from Today Is That Day" href="http://www.todayisthatday.com/inspirational-quotes/" target="_blank"><em>Inspirational Quotes from Today Is That Day</em></a></em></p></blockquote>
<h4>2.) Better site performance = faster response time = more search engine traffic</h4>
<p>Each WordPress installation takes a significant amount of resources on your server (that means CPU cycles and RAM, and a little disk space)&#8230; and you can pretty much multiply that requirement by the number of WordPress installations you&#8217;re running. Think of it this way: they leaner you run, the less your hosting bill will be, and the FASTER your website will be. Faster website = more search engine traffic &#8211; because Google absolutely cares and takes site response time into account when ranking your site compared to others.</p>
<h3>Have you actually seen a working WordPress Multisite in the wild? Is it stable?</h3>
<p>Absolutely! In true Dan &amp; Jennifer fashion we put our money where our mouth is so to speak, and went &#8220;Multisite&#8221; on our site Today Is That Day.</p>
<p>Previously, Today Is That Day was made up of two WordPress installs:</p>
<ol>
<li><a title="Personal Development: Mind, Body, Spirit, Wealth from Today Is That Day" href="http://www.todayisthatday.com" target="_blank">The Today Is That Day Magazine</a> &#8211; articles, videos, etc.</li>
<li><a title="Inspirational &amp; Famous Quotes from Today Is That Day" href="http://www.todayisthatday.com/inspirational-quotes/" target="_blank">Inspirational Quotes from Today Is That Day</a> &#8211; our hand-picked selecting of hundreds of the best Inspirational Quotes</li>
</ol>
<p>Today those two WordPress installs have been combined and are running smoothly as 1 WordPress Multisite.</p>
<p>And don&#8217;t think that combining those two WordPress installs into one is not worth it&#8230; it absolutely is. Today Is That Day &#8220;for now&#8221; only had two WordPress installs running it, but we&#8217;d already planned two more for features to be added in the coming months.</p>
<p>And Ask Dan &amp; Jennifer, which has been around significantly longer and is far more complex, is currently running on 4 WordPress installs, with more planned. So moving THAT to Multisite will be a great help.</p>
<p>One minor clarification: a Wordpres Multisite install an be for different domains (www.site1.com, www.site2.com), or for different &#8220;sections&#8221; of one website, which is how we use it (see example above for Today Is That Day: one is a &#8220;subdirectory&#8221; of the other).</p>
<p>You can also certainly install a single Multisite to manage your different WordPress domains&#8230; and at some point we&#8217;re going to do that for the several simpler WordPress website we&#8217;re running. But our current goal is consolidating all the different WordPress installs for each of our main websites into one WordPress per site.</p>
<h3>So how DO you upgrade your existing WordPress installs to WordPress Multisite?</h3>
<p>So now that we know about WordPress Multisite, the obvious next question is&#8230; how do I migrate my 10 WordPress installations into a single &#8220;easy to manage&#8221; WordPress Multisite?</p>
<p>Yes, between Ask Dan &amp; Jennifer, Today Is That Day, and Blog Success Journal, we really do (or rather did) have about 10 active WordPress installs. And yes, it was quite a pain staying on top of them all. So we&#8217;re quite pleased to be migrating them all to the Multisite model.</p>
<p>First, you&#8217;ll want to be running the latest version of WordPress. You can even use WordPress auto install (or auto upgrade) for that, very easy.</p>
<p>But then comes the more involved process&#8230; enabling your &#8220;Multisite&#8221; and then migrating your other sites INTO it. Stay tuned, that answer along with all the gory and magical details of &#8220;how to do it&#8221; is coming up shortly&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/tutorial-wordpress-multisite-should-you-or-shouldnt-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 WordPress Plugins Your Blog Should Have (Video)</title>
		<link>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-wordpress-plugins-your-blog-should-have-video/</link>
		<comments>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-wordpress-plugins-your-blog-should-have-video/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 14:55:58 +0000</pubDate>
		<dc:creator>Dan and Jennifer</dc:creator>
				<category><![CDATA[WordPress Tips & Advice]]></category>
		<category><![CDATA[After The Deadline]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger tools]]></category>
		<category><![CDATA[blogging advice]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[cForms]]></category>
		<category><![CDATA[contact form]]></category>
		<category><![CDATA[Disqus]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Feedsmith]]></category>
		<category><![CDATA[Google XML Sitemaps]]></category>
		<category><![CDATA[GravityForms]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[How To Make Money Online]]></category>
		<category><![CDATA[IntenseDebate]]></category>
		<category><![CDATA[JS-Kit Echo]]></category>
		<category><![CDATA[Sexy Bookmarks]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[start a blog]]></category>
		<category><![CDATA[Viper Video Quicktags]]></category>
		<category><![CDATA[W3 Total Cache]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WP Cache]]></category>
		<category><![CDATA[WP Super Cache]]></category>
		<category><![CDATA[YARPP]]></category>

		<guid isPermaLink="false">http://www.blogsuccessjournal.com/?p=282</guid>
		<description><![CDATA[Starting a blog on WordPress is easy, but knowing what plugins you need to make your blog a high-powered, user-friendly website isn&#8217;t. With the many hundreds of WordPress plugins available today, you might not be sure which ones you really need. Don&#8217;t waste your time trying out each WordPress plugin to find out which one [...]]]></description>
			<content:encoded><![CDATA[<p><a title="How to Start a Blog and Make Money Online – in 10 Easy Steps" href="http://www.blogsuccessjournal.com/blog-tips-and-advice/how-to-start-a-blog/how-to-start-a-blog-and-make-money-online-in-10-easy-steps/">Starting a blog</a> on WordPress is easy, but knowing what plugins you need to make your blog a high-powered, user-friendly website isn&#8217;t. With the many hundreds of WordPress plugins available today, you might not be sure which ones you really need.</p>
<p>Don&#8217;t waste your time trying out each WordPress plugin to find out which one you want. Here are the top 10 WordPress plugins that you want your blog to have, hands down.</p>
<div style="text-align: center;"><strong><em>Top 10 WordPress Plugins Your Blog Should Have &#8211; Part 1</em></strong></div>
<p><a href="http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-wordpress-plugins-your-blog-should-have-video/"><em>Click here to view the embedded video.</em></a></p>
<div style="text-align: center;"><strong><em>Top 10 WordPress Plugins Your Blog Should Have &#8211; Part 2</em></strong></div>
<p><a href="http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-wordpress-plugins-your-blog-should-have-video/"><em>Click here to view the embedded video.</em></a></p>
<p><a title="W3 Total Cache" href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/" target="_blank"><strong>W3 Total Cache</strong> </a></p>
<p>For top-notch website performance, you need the W3 Total Cache WordPress plugin. Both your blog visitors and search engines care about how fast your website is. If your pages take forever to load, you&#8217;ll lose readers and search engine traffic. In fact Google just announced this week that they are not officially taking site response time into consideration for rankings. Of course they are: speed means quality of experience for their users.</p>
<p>W3 Total Cache can reduce your page load time by as much as 50% or even more &#8211; something you definitely want to do. AND it will help you keep your site running and available instead of crashing if you get a major rush of traffic all at once, such as getting a popular story on Digg or a &#8220;StumbleUpon attack&#8221;.  Other major caching plugins like <a title="WP Cache" href="http://wordpress.org/extend/plugins/wp-cache/" target="_blank">WP Cache</a> and <a title="WP Super Cache" href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a> are OK, but in our opinion they are not as versatile or as powerful as W3 Total Cache (and we&#8217;ve used/tested them all).</p>
<p><strong><a title="Google XML Sitemaps" href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a></strong></p>
<p>You want search engines to know when you post new content so you get more traffic. Google XML Sitemaps automatically generates an updated sitemap and submits it to top search engines without you lifting a finger. Don&#8217;t rely on search engines to crawl your site and find new posts &#8211; use this plugin to automatically tell them the instant you post &#8211; before someone else copies your post and pretends they wrote it &#8211; which happens. And &#8220;original content&#8221; (i.e. where Google &#8220;finds&#8221; a post first) gets much more credit than duplicate content (i.e. other places Google finds that post).</p>
<p><strong><a title="GravityForms" href="http://www.gravityforms.com/" target="_blank">GravityForms</a> or <a title="cForms" href="http://www.deliciousdays.com/cforms-plugin/" target="_blank">cForms</a></strong></p>
<p>Your readers need an easy way to contact you, whether it&#8217;s to ask you a question or to advertise on your site. Contact form plugins like GravityForms or cForms allow you to easily create a great-looking contact form for your website. Instead of putting your email address out there for everyone (including spam bots) to email you thousands of times, use GravityForms or cForms to allow your readers users to contact you easily without cluttering your inbox with lots of spam.</p>
<p><a title="Disqus Comments" href="http://disqus.com/" target="_blank"><strong>Disqus Comments</strong> </a></p>
<p>Another interactive tool for your blog readers is the all-important comment box. Disqus Comments is an excellent WordPress plugin that allows visitors to comment on your articles with a great looking social interface and great spam control. Use an advanced plugin like Disqus Comments instead of WordPress&#8217;s integrated comment tool. It looks much, much better and gives you more control over comments. It&#8217;s also a hosted comment plugin that automatically syncs the comments with your WordPress database, and provides great social interaction with your readers.</p>
<p>Two other very popular comment oriented WordPress plugins are <a title="JS-Kit Echo Comments" href="http://js-kit.com/" target="_blank">JS-Kit Echo</a> and <a title="IntenseDebate Comment Plugin" href="http://intensedebate.com/" target="_blank">IntenseDebate</a>. We&#8217;ve tried them both and feel Disqus is currently the better choice. The backend comment management of JS-Kit Echo leaves a lot to be desired, and we feel the Disqus comment layout just looks better than the IntenseDebate option. Frankly, this is a matter of preference, they&#8217;re all good options!</p>
<p><strong><a title="Akismet Plugin" href="http://akismet.com/" target="_blank">Akismet</a></strong></p>
<p>This plugin automatically comes with WordPress and does a great job catching comment and trackback spam. If you&#8217;re using a hosted comment service like Disqus, Akismet won&#8217;t apply to you. Actually you can still use the Akismet service through Disqus, just won&#8217;t need to enable the plugin.</p>
<p><strong><a title="FeedBurner Feedsmith" href="http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=78483" target="_blank">FeedBurner Feedsmith</a></strong></p>
<p>Redirect your RSS feed to FeedBurner and have your RSS subscribers poll Feedburner instead of your site. This WordPress plugin makes your feed much more usable, since it provides far more optimized RSS feed than WordPress alone does. It will also offload the feed reader traffic to Google (who now owns FeedBurner) so it&#8217;s much,  much faster than your web server, improving your blog&#8217;s performance even more. This will sound a little technical to a new blogger, but do it anyway, it&#8217;ll work better that way.</p>
<p><strong><a title="YARPP" href="http://mitcho.com/code/yarpp/" target="_blank">YARPP</a></strong></p>
<p>This WordPress plugin is an excellent tool to use if you want readers who are interested in your topics to stay on your website longer. YARPP automatically displays the most closely related articles from your blog to your readers at the end of the article, allowing them to easily browse through the content they&#8217;re interested in on your site instead of allowing to look for what they want elsewhere.</p>
<p><a title="After The Deadline" href="http://afterthedeadline.com/" target="_blank"><strong>After The Deadline</strong></a></p>
<p>This easy to use spell and grammar checker for WordPress is available for free and is essential to use even if you feel like you&#8217;re spelling and grammar error-free. It doesn&#8217;t cost anything and will ensure each post is error free and looks as good as it is.</p>
<p><strong><a title="SexyBookmarks" href="http://wordpress.org/extend/plugins/sexybookmarks/" target="_blank">Sexy Bookmarks</a></strong></p>
<p>A bookmarking tool is essential for your blog and Sexy Bookmarks is an excellent tool to use with great eye candy. It adds a nice visual appeal to your blog, while encouraging readers to share the article they&#8217;re reading with their friends on Twitter, Facebook and more. This means more linkbacks to your blog and more readers for you!</p>
<p><a title="Viper's Video Quicktags" href="http://wordpress.org/extend/plugins/vipers-video-quicktags/" target="_blank"><strong>Viper&#8217;s Video Quicktags</strong></a></p>
<p>To embed your YouTube video on your blog, you&#8217;ll need Viper&#8217;s Video Quicktags. Newer versions of WordPress (2.9 and above) allow you to embed videos without special plugins, but Viper&#8217;s Video Quicktags allows you much better control over how the videos look in your posts. You can set the format for all of your videos in one place instead of coding it in each post &#8211; and having to edit ALL your posts to make a change.</p>
<p>After building very successful WordPress blog and online magazine <a title="Ask Dan &amp; Jennifer - Today's #1 Love &amp; Sex Resource" href="http://www.askdanandjennifer.com" target="_blank">AskDanAndJennifer.com</a> over the last four years, these WordPress plugins are our personal favorites &#8211; and for the most part, the only ones we actually use.</p>
<p>Do you have favorite &#8220;must have&#8221; <a title="Wordpress plugins, tips, and advice" href="http://www.blogsuccessjournal.com/category/blog-tips-and-advice/wordpress-tips-advice/">WordPress plugins</a> that aren&#8217;t in this list? Let us know! Leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-wordpress-plugins-your-blog-should-have-video/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Top 10 Must Have WordPress Plugins Every Serious Blogger Should Know About</title>
		<link>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-must-have-wordpress-plugins-that-every-serious-blogger-should-know-about/</link>
		<comments>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-must-have-wordpress-plugins-that-every-serious-blogger-should-know-about/#comments</comments>
		<pubDate>Tue, 12 Jun 2007 15:37:57 +0000</pubDate>
		<dc:creator>Dan and Jennifer</dc:creator>
				<category><![CDATA[WordPress Tips & Advice]]></category>

		<guid isPermaLink="false">http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-must-have-wordpress-plugins-that-every-serious-blogger-should-know-about/</guid>
		<description><![CDATA[WordPress gives bloggers amazing power to engage their readers and to make their blogs very appealing to search engines. This means you&#8217;re giving the search engines what they want, and they&#8217;ll reward you with more and more web site traffic over time.&#160; Yet, many WordPress bloggers aren&#8217;t taking advantage of some of these hidden gems. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress gives bloggers amazing power to engage their readers</strong> and to make their blogs very appealing to search engines. </p>
<p>This means you&#8217;re giving the search engines what they want, and they&#8217;ll reward you with more and <a href="http://www.blogsuccessjournal.com/increase-web-site-traffic/search-engine-optimization-seo/do-you-want-google-to-send-you-thousands-of-visitors-every-day/" title="get more web site traffic">more web site traffic</a> over time.&nbsp; Yet, many WordPress bloggers aren&#8217;t taking advantage of some of these hidden gems.</p>
<p>Of course, many people host their blogs on Blogger.com or TypePad, but that&#8217;s another story for another day. The short version is that while WordPress may look a little intimidating at first, it&#8217;s just as easy to manage as TypePad, and has immensely more flexibility than either Blogger or TypePad. </p>
<p><strong>Oh, and if your free Blogger.com blog mysteriously disappears overnight</strong> (as we had happen once), you have nobody to call. So if your blog matters, <a target="_blank" title="web hosting review of HostGator" href="http://www.blogsuccessjournal.com/blog-tips-and-advice/web-hosting-reviews/blog-hosting-review-hostgator/">get yourself a good web host</a> and give it some WordPress lovin&#8217;. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   </p>
<p><strong>These are the Top 10 Must-Have WordPress plugins that every serious blogger should be running.</strong> Yes, they are a handful at first, but it&#8217;ll be well worth it. Set aside an afternoon to give them a try, and watch your readership and your free search engine traffic go through the roof.&nbsp;<strong>  <br />                                                                               </strong></p>
<h3>Get lots of Search Engine Optimization (SEO) goodness with a Tagging Plugin<strong> </strong></h3>
<p>We&#8217;ve all been seeing tags show up all over the place, as a replacement for categories. They&#8217;re everywhere, from Amazon.com to all your favorite blogs. Their main purpose is to segment your information so your readers can easily find it &#8211; kind of like categories, just a little more flexible.</p>
<p>But tags are very important for SEO, since tag pages rank very well in natural search engine results. This means that a well configured tagging plugin can help you <a title="get more web site traffic for free" href="http://www.blogsuccessjournal.com/increase-web-site-traffic/search-engine-optimization-seo/do-you-want-google-to-send-you-thousands-of-visitors-every-day/">get more web site traffic for free</a>.</p>
<p>We use the <a href="http://www.neato.co.nz/ultimate-tag-warrior/" title="Ultimate Tag Warrior" target="_blank">Ultimate Tag Warrior plugin</a> for tags, and recommend it highly. It&#8217;s a little complex to configure at first, but then it just works.</p>
<p>After you install and configure your new tagging plugin, remember to display the tags for each post under that particular post. The tagging plugin will create a &quot;tag page&quot; for each tag, so clicking on a tag will list all the posts on your blog pertaining to that tag.</p>
<p>One thing you may not realize at first is that for every tag you create, a new page is create on your blog. You can quickly go from 20 pages to 800 pages &#8211; tons of good quality content for Google and Yahoo to slurp&#8230;&nbsp;</p>
<p>A bonus tip: when showing these tags, configure them to point to the particular tag page on your site, i.e. NOT to Technorati or elsewhere, which is often the default configuration. This way the search engines will also find and give importance to these pages.      </p>
<h3><strong>Make it easy for readers to RSS subscribe to your blog, with Feedburner<br />                              </strong></h3>
<p>Just a year or two ago, RSS was the domain of the hopelessly nerdy and geeky. Fact is, most modern desktop software, from operating systems to Internet browsers, is coming out with RSS support. And your readers want to access your content over RSS. So are you going to make it easy for them or not? </p>
<h4>What&#8217;s the best way to configure and track RSS for your readers?<br />                                                             </h4>
<p>While WordPress comes with good built-in RSS support, FeedBurner provides some great &quot;finishing services&quot; that you won&#8217;t want to miss out on. They&#8217;ll transparently format your feed so that any RSS reader will be able to read it. Also when people click on your &quot;sign up my RSS feed&quot; button, they won&#8217;t get a jumbled confusing mess in their browser. FeedBurner detects a regular browser and shows them a pretty HTML subscribe page.&nbsp;  </p>
<p>More importantly for many bloggers, they&#8217;ll give you feed analytics. Yep, you&#8217;ll find out how many people are actually reading your RSS feed. Pretty cool. </p>
<p>To get set up with FeedBurner, download and install the <a href="http://www.feedburner.com/fb/a/help/wordpress_quickstart" title="FeedBurner FeedSmith plugin" target="_blank">FeedBurner FeedSmith plugin</a>. Then follow the directions to create a FeedBurner account and configure your new RSS plugin with the specifics of your new FeedBurner feed. </p>
<p>As an added bonus, your new FeedBurner plugin will automatically redirect all your current RSS subscribers who are on your blog&#8217;s original feed, and get them all pulling on that shiny new FeedBurner feed. So you&#8217;ll have real numbers on who&#8217;s reading your blog by RSS. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h4>Should you provide a full or just a partial RSS feed?</h4>
<p>This debate has been raging in blogger circles for years. Many bloggers are afraid to provide a full feed, because some spam blogs may pull their feed and get their original content scanned by Google first. This means the spam blog will get Google original content credit. </p>
<p>This is technically a fair concern, thought it&#8217;s a little short sited. A professional blog with a strong following will be Google cached MUCH more quickly and frequently than some fly-by-night AdSense spam blog. Those tend to have a short life expectancy to begin with. </p>
<p><strong>On the other hand, there are people who will read your blog ONLY if they can get it as a full RSS feed.</strong> They like to use their feed reader, and that&#8217;s it. So it&#8217;s up to you to decide if you want those readers or not. </p>
<p>More often than not, your best bet is to listen to your audience and give them what they want, the way they want it. Don&#8217;t base your decisions on fear and a lack mentality. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> &nbsp;</p>
<h3>Keep your readers engaged and on your site longer by showing Related Posts </h3>
<p>Visitors to a new site are amazingly flighty. They take a few glances around and decide quickly if it&#8217;s worth staying. The ones who stay are usually sucked in by the great content on your blog. </p>
<h4>What&#8217;s the point of showing related posts? Does it really matter?</h4>
<p>When a reader comes to the end of that very captivating article, what is it they want more than anything in the world? </p>
<p>Since they took the time to read your article, their brain is focused on that topic, and it&#8217;s feeding on that very yummy content. And by it&#8217;s very nature, it&#8217;s screaming for more! Showing a list of related posts at the end of an article is a brilliant strategy to keep readers engaged and ON YOUR SITE!</p>
<h4>How and where should you display related posts on your blog?&nbsp;</h4>
<p>The best place to show related posts is a bulleted list right at the end of the article. Our stats show that links just below the post have the highest click through of any location on the page!</p>
<p>We went with the <a href="http://wasabi.pbwiki.com/Related+Entries" title="WASABI Related Entries Plugin" target="_blank">WASABI Related Posts plugin</a>, since it&#8217;s the most popular related posts plugin, and it just works. Keep those readers hooked. Remember, the first taste is always free! <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   </p>
<h4>   Add related posts to your feed as well</h4>
<p>As an added benefit, you can display related posts&nbsp; Just like showing related posts under a particular blog post on your site, this is a great way to engage RSS readers by giving them more options. This means more to choose from if they don&#8217;t like the particular item they&#8217;re reading, or they just want more!</p>
<p>Use <a target="_blank" title="add related posts to your RSS feed" href="http://www.solo-technology.com/apps.html">this plugin</a> which brings together UTW and WASABI Related Posts to add a list of related posts to your feed.</p>
<h3>  Dust off and feature some of your older posts by showing Random Posts<strong> </strong></h3>
<p>Over time, dozens and then hundreds of posts get buried and abandoned in the archives of most blogs. A great way to bring these out is by featuring Random Posts in a spot either in your sidebar or somewhere around the list of Related Posts. </p>
<p>There are many reasons to pull up these. First of all, the search engines are still sending visitors to those post, IF they know how to find them. Getting even more activity there means better rankings for those posts in the search engines, and thus more web site traffic. Yumm. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>This is now easy to do since the good people who brought you the <a href="http://wasabi.pbwiki.com/Related+Entries" title="WASABI Related Entries Plugin" target="_blank">WASABI Related Posts plugin</a> have also made available the excellent <a target="_blank" title="WASABI Random Posts" href="http://wasabi.pbwiki.com/Random%20Posts%20and%20Random%20Excerpts">WASABI Random Posts plugin</a>.&nbsp;</p>
<h3>Get your readers involved and keep their interest with Latest Comments </h3>
<p>People love to talk and share their opinions on all kinds of topics. But most people don&#8217;t want to be the first to say something. </p>
<p>Get them talking and involved by highlighting the latest comments across all the posts on your blog. As your blog grows in size, you&#8217;ll find people landing on older posts from search engine or direct traffic, and leaving comments on those. Showing those comments in a &quot;latest comments&quot; list will prompt more discussion on those topics. And more content on those pages is a great way to get even more search engine traffic.   </p>
<p>       This is great to feature to add in your sidebar, thus getting yet more comments and visibility to those previous posts. We recommend <a href="http://meidell.dk/archives/category/wordpress/latest-comments/" title="Brian's Latest Comments" target="_blank">Brian&#8217;s Latest Comments plugin</a>.<span class="moz-txt-link-freetext"> It&#8217;s simple, very customizable, and works great.</span><a class="moz-txt-link-freetext" href="http://meidell.dk/archives/category/wordpress/latest-comments/"><br />                                                                               </a></p>
<h3>Show off your Most Popular Posts &#8211; new visitors love these</h3>
<p>Capture the interest of your new visitors and regular readers by giving them easy access to your best and most popular articles. </p>
<p>The most popular articles are generally those that are the most interesting to your readers &#8211; unless you do very strong and focused social media or other promotion, but this is generally not the case.</p>
<p>Be aware that there IS a little increased overhead on your system with this, since the plugin will record EACH view of EACH post on your site by logging ALL these views in your MySQL database. This shouldn&#8217;t be an issue, but can add up if your site gets over 50,000 visitors a month.</p>
<p>We use the <a target="_blank" title="Top Posts by Category Plugin" rel="bookmark" href="http://www.macalua.com/2007/02/01/top-posts-by-category-plugin/">Top Posts by Category Plugin</a>.</p>
<h3><strong>Give visitors and search engines an easy way to navigate your blog with a Site Map</strong></h3>
<h4>New visitors often like to look around and get their bearings </h4>
<p>A site map is very helpful to give your visitors an at-a-glance view of your site, how it&#8217;s organized, what information is available where, and so on.</p>
<h4>Search engines depend on site maps to find all of your buried articles</h4>
<p>Search engines can&#8217;t send you traffic if they don&#8217;t know what great content is hiding on your site. Let them quickly and easily find all our your articles with a dynamically generated site map.</p>
<p>   For a quick example, see what we&#8217;re doing with site maps in the footer of our <a target="_blank" title="Dating Tips, Sex Tips, and Relationship Advice" href="http://www.AskDanAndJennifer.com">www.AskDanAndJennifer.com Dating &amp; Relationship advice column</a><a class="moz-txt-link-freetext" href="http://www.askdanandjennifer.com/"></a><span class="moz-txt-link-freetext">.</span><a class="moz-txt-link-freetext" href="http://www.askdanandjennifer.com/"><br />                                                                             </a></p>
<h4>First, create an automatically updating HTML site map page for your visitors</h4>
<p>This is mainly for your visitors, but also for some search engines that happen to find it. This is not a plugin per-se, but rather a custom WordPress page that auto-generates your site map. <a href="http://www.pearsonified.com/2006/12/use_an_xhtml_sitemap_for_better_indexing.php" title="Dynamic HTML Sitemap" target="_blank">Get it here</a>.&nbsp;</p>
<h4>Then, create a Google XML site map for your favorite search engines&nbsp;</h4>
<p>Get the <a href="http://www.arnebrachhold.de/2006/01/07/google-sitemap-generator-for-wordpress-3-beta" title="Google XML Sitemap Plugin" target="_blank">Google XML Sitemap Plugin</a>, which auto-generates a site map in Google Site Map format. This plugin also updates the site map every time you make a blog post. </p>
<p>You absolutely do NOT want to be updating a site map by hand every time you post. Unless of course you would find that therapeutic. <img src='http://www.blogsuccessjournal.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <a class="moz-txt-link-freetext" href="http://www.arnebrachhold.de/redir/sitemap-home/">                                    </a>   </p>
<p> Bonus tip: To get the most benefit, add your UTW tag pages to your dynamic site map with the <a target="_blank" title="Google Sitemaps - UTW Tag Addon" href="http://www.dicontas.co.uk/blog/google-sitemap-utw-tag-wordpress-plugin/">Google Sitemaps &#8211; UTW Tag Addon plugin</a>.</p>
<h3>Help your visitors promote and spread the word about your awesome articles and get you more web site traffic</h3>
<p>People love to share cool stuff they find with others. They also like to bookmark good articles and websites for later. Social media makes sites like del.icio.us and even Netscape.com and Digg make it possible to do BOTH of these at once.</p>
<p>Make it easy for your readers to spread the word about you, and they&#8217;ll do it. Use a social media plugin that automatically pre-fills the fields for these visitors to submit your article to these social media sites.</p>
<p>Many people use either <a href="http://alexking.org/projects/wordpress/readme?project=share-this" title="Get Alex King's Share This plugin" target="_blank">Alex King&#8217;s Share This plugin</a> or the newer but very popular <a href="http://addthis.com/" title="AddThis.com" target="_blank">AddThis.com plugin</a>.</p>
<p>Place this widget in a prominent spot toward the end of your post, and watch others spread the good word for you.</p>
<h3>Encourage bloggers to comment on your blog by linking back to their sites&nbsp;</h3>
<p>When people leave comments on your blog, it&#8217;s customary for them to enter their web site address. It&#8217;s only fair that people who leave insightful comments should get a linkback from your blog to their site, and get some search engine goodness from it.</p>
<p>Whether you think it&#8217;s fair or not, this is still a great motivator to get ambitious bloggers involved in the discussions on your blog.&nbsp;</p>
<h4>Disable the WordPress nofollow tag&nbsp;</h4>
<p>WordPress is configured to mark all these linkbacks with the &quot;nofollow&quot; attribute, so that they are ignored by Google and other search engines as far as SEO value to the commenters blog.</p>
<p>There&#8217;s a movement to encourage comments by disabling this &quot;nofollow&quot; tag for comments left on WordPress blog. Of course, there&#8217;s a <a href="http://www.semiologic.com/software/dofollow/" title="Get the DoFollow plugin" target="_blank">DoFollow plugin</a> that will do this for you.   </p>
<h4>Feature your top commentators on your sidebar, with a full link to their site</h4>
<p>A similar and more powerful way to encourage serious commentators to become involved in the discussions on your blog is to feature the top 10 or so commentators in your blog sidebar. Only the true top contributors will show up in this list, and it&#8217;s well worth the sidebar real estate to encourage the conversation these readers will often facilitate.</p>
<p>This can easily be done with the WordPress <a target="_blank" title="Top Commentators plugin" href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/">Top Commentators plugin</a>.</p>
<h3>What plugins do you use? Which are your absolute must-haves?</h3>
<p>There are many other plugins available for WordPress, to perform just about every imaginable blog task. <strong>Leave a comment below and let us know your favorites.</strong>   </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogsuccessjournal.com/blog-tips-and-advice/wordpress-tips-advice/top-10-must-have-wordpress-plugins-that-every-serious-blogger-should-know-about/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 33/44 queries in 0.015 seconds using disk

Served from: www.blogsuccessjournal.com @ 2010-09-07 01:04:44 -->