<?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/"
	>

<channel>
	<title>ErumMunir.com &#187; All Things Wordpress</title>
	<atom:link href="http://www.erummunir.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.erummunir.com</link>
	<description></description>
	<pubDate>Wed, 24 Dec 2008 12:17:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Upgrading to Wordpress 2.7</title>
		<link>http://www.erummunir.com/460/upgrading-to-wordpress-27</link>
		<comments>http://www.erummunir.com/460/upgrading-to-wordpress-27#comments</comments>
		<pubDate>Wed, 24 Dec 2008 12:17:22 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Upgrading Wordpress]]></category>

		<category><![CDATA[Wordpress 2.7]]></category>

		<category><![CDATA[WP 2.7 Changes]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=460</guid>
		<description><![CDATA[It seems like there is a new Wordpress version every few months. This is great from one perspective i.e. we get great new features and it just keeps getting better. However, seeing from the other end of the spectrum it also means that we have to upgrade and make changes to our theme and make [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/460/upgrading-to-wordpress-27">Upgrading to Wordpress 2.7</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/12/wordpress-updated' rel='bookmark' title='Permanent Link: Wordpress Updated'>Wordpress Updated</a> <small>I finally took the plunge and upgraded this blog to...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>It seems like there is a new Wordpress version every few months. This is great from one perspective i.e. we get great new features and it just keeps getting better. However, seeing from the other end of the spectrum it also means that we have to upgrade and make changes to our theme and make sure there are no broken plugins.</p>
<p>My last version was WP 2.5.1 and I finally upgraded to 2.7 last night. It was more or less a painless task since all of my plugins still work with 2.7. At most I had to update them via the one-click plugin update (it is more like 2 clicks but who&#8217;s counting ;-)).</p>
<p>However, it did require some changes in my theme. I could have lived without these changes as my theme did not break &#8230; I just wanted some of the new features to work.</p>
<p>So here&#8217;s the low down on some of the main changes in Wordpress 2.7 and how to deal with them:</p>
<p class="padding-bottom:0px;"><span id="more-460"></span></p>
<h2>Admin Interface</h2>
<p>This has to be the biggest and best change yet. The admin interface has improved threefold. It is so much easier to get to the section you want to open. It is just faster and easier to use not to mention it looks great.</p>
<h2>Dashboard Changes</h2>
<p>Personally I always thought the dashboard real estate was always wasted. Not anymore. It now displays a hoard of important info including recent comments, drafts, statistics, etc and also lets you add a quick post directly from the dashboard.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/12/dash1.gif" alt="dash1" title="dash1" width="500" height="347" class="alignnone size-full wp-image-471" /></p>
<h2>Write/Edit Posts and Pages</h2>
<p>You can now choose the boxes you want displayed on these pages as well as drag them around to suit your preference.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/12/editpost2.gif" alt="editpost2" title="editpost2" width="500" height="346" class="alignnone size-full wp-image-472" /></p>
<h2>Posts Index</h2>
<p>You can choose which columns to display. Mouse over a post to display menu options like Edit, Quick Edit, Delete, View.</p>
<p>Quick Edit brings up some basic editing options for the post. Among other things you can change categories, add tags, edit the title, slug, etc as well as make a sticky post.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/12/postindex.gif" alt="postindex" title="postindex" width="500" height="301" class="alignnone size-full wp-image-474" /></p>
<h2>Sticky Posts</h2>
<p>As mentioned above, the quick edit option lets you mark a post as sticky so it stays at the top of your blog. However, one small change needs to be made to your theme regarding this.</p>
<p>Find your post loop in index.php, archive.php, category.php. Look for the starting div &#8230; something like this:</p>
<p class="box"><code>&lt;div id="post-&lt;?php the_ID(); ?&gt;" class="post"&gt;</code></p>
<p>Change this to:</p>
<p class="box"><code>&lt;div id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class(); ?&gt;&gt;</code></p>
<p>You can also add one or multiple classes to this as follows:</p>
<p class="box"><code>&lt;div id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class('class1 class2'); ?&gt;&gt;</code></p>
<p>The classes need to be separated by a space.</p>
<h2>Better Comment Management</h2>
<p>There are a lot of improvements related to comments. Not only can you perform bulk actions like marking as spam, deleting, etc, but you can finally reply to comments from within the WP admin interface. About time this feature got added. The only thing I miss is a threaded reply feature here.</p>
<p>A menu pops up when you mouse over a comment giving you the option to reply, edit, delete, etc.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/12/comment.gif" alt="comment" title="comment" width="500" height="146" class="alignnone size-full wp-image-466" /></p>
<h2>Threaded Comments and Comment Pagination</h2>
<p>These two much needed features have been added to the core WP installation. No need for plugins to do either.</p>
<p>Go to settings and then discussion. Here you will find the option to set pagination and threading on along with the settings. You can choose the number of comments to display as well as how deep the threading should go.</p>
<p>Now for the harder part. These two features require a change in your comments.php file. This is all you need to display your comments:</p>
<pre><code>&lt;div class="navigation"&gt;
&lt;div class="alignleft"&gt;&lt;?php previous_comments_link() ?&gt;&lt;/div&gt;
&lt;div class="alignright"&gt;&lt;?php next_comments_link() ?&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;ol id="commentlist"&gt;
&lt;?php wp_list_comments('type=comment'); ?&gt;
&lt;/ol&gt;

&lt;div class="navigation"&gt;
&lt;div class="alignleft"&gt;&lt;?php previous_comments_link() ?&gt;&lt;/div&gt;
&lt;div class="alignright"&gt;&lt;?php next_comments_link() ?&gt;&lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>You also need to add this line to your header.php file:</p>
<p class="box"><code>&lt;?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?&gt;</code></p>
<p>This is just the basic comment code which works with pagination and threading. You can style the basic code or add a call back function for extreme styling or in other words your own custom comment design. </p>
<p>I will try and cover that in another post.</p>
<h2>Logout</h2>
<p>If you  have a logout option in your theme, make sure to replace the logut url with:</p>
<p class="box"><code>&lt;?php echo wp_logout_url(get_permalink()); ?&gt;</code></p>
<h2>So these are&#8230;</h2>
<p>&#8230;some of the changes in WP2.7. The goods news is that your old theme from WP 2.6 and 2.5 will still work as will most of the plugins. You only need to make the changes if you want to add the new comment features.</p>
<p><a href="http://wordpress.org/download/" onclick="javascript:pageTracker._trackPageview ('/outbound/wordpress.org');" target="_blank">You can get WP 2.7 here.</a></p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/460/upgrading-to-wordpress-27">Upgrading to Wordpress 2.7</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/12/wordpress-updated' rel='bookmark' title='Permanent Link: Wordpress Updated'>Wordpress Updated</a> <small>I finally took the plunge and upgraded this blog to...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/460/upgrading-to-wordpress-27/feed</wfw:commentRss>
		</item>
		<item>
		<title>WordPress 2.6.2</title>
		<link>http://www.erummunir.com/219/wordpress-262</link>
		<comments>http://www.erummunir.com/219/wordpress-262#comments</comments>
		<pubDate>Thu, 11 Sep 2008 07:28:57 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Upgrading Wordpress]]></category>

		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Wordpress 2.6.2]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=219</guid>
		<description><![CDATA[I&#8217;ve had that annoying yellow bar telling me to upgrade to WP 2.6.1 for a while. Today I finally decided to give it a go and just in time, too. Now the bar reads download WordPress 2.6.2. Wow! These guys are fast.
Saved from two upgrades. Phew!
Here&#8217;s the lowdown on why you should upgrade to 2.6.2
It [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/219/wordpress-262">WordPress 2.6.2</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/460/upgrading-to-wordpress-27' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.7'>Upgrading to Wordpress 2.7</a> <small>It seems like there is a new Wordpress version every...</small></li><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had that annoying yellow bar telling me to upgrade to WP 2.6.1 for a while. Today I finally decided to give it a go and just in time, too. Now the bar reads download WordPress 2.6.2. Wow! These guys are fast.</p>
<p>Saved from two upgrades. Phew!</p>
<p><a href="http://wordpress.org/development/2008/09/wordpress-262/" onclick="javascript:pageTracker._trackPageview ('/outbound/wordpress.org');" target="_blank">Here&#8217;s the lowdown on why you should upgrade to 2.6.2</a></p>
<p>It is most important for those of you who allow open registrations on your blogs. Of course there are some bug fixes, too. So best to upgrade.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/219/wordpress-262">WordPress 2.6.2</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/460/upgrading-to-wordpress-27' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.7'>Upgrading to Wordpress 2.7</a> <small>It seems like there is a new Wordpress version every...</small></li><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/219/wordpress-262/feed</wfw:commentRss>
		</item>
		<item>
		<title>CForms II - More on Using as a Comment Form</title>
		<link>http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form</link>
		<comments>http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form#comments</comments>
		<pubDate>Tue, 19 Aug 2008 08:26:13 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[CForms]]></category>

		<category><![CDATA[CommentLuv]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Forms]]></category>

		<category><![CDATA[Subscribe To Comments]]></category>

		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=154</guid>
		<description><![CDATA[Good news! There is a new version of CForms that is out and has got great features. The best thing about it is it has got most of the features on my wish list  
So here goes&#8230;
Plugin Compatibility
CForms is now completely compatible with three of the most used comment plugins. 

Subscribe To Comments
CommentLuv
WP AJAX [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form">CForms II - More on Using as a Comment Form</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li><li><a href='http://www.erummunir.com/36/updated-list-of-important-and-useful-wordpress-plugins-wp-251' rel='bookmark' title='Permanent Link: Updated List of Important and Useful Wordpress Plugins (WP 2.5.1)'>Updated List of Important and Useful Wordpress Plugins (WP 2.5.1)</a> <small>It is time for an updated list of useful Wordpress...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Good news! There is a new version of CForms that is out and has got great features. The best thing about it is it has got most of the features on my wish list <img src='http://www.erummunir.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So here goes&#8230;</p>
<h2>Plugin Compatibility</h2>
<p>CForms is now completely compatible with three of the most used comment plugins. </p>
<ul class="space">
<li><a href="http://txfx.net/code/wordpress/subscribe-to-comments/" onclick="javascript:pageTracker._trackPageview ('/outbound/txfx.net');" target="_blank">Subscribe To Comments</a></li>
<li><a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.fiddyp.co.uk');" target="_blank">CommentLuv</a></li>
<li><a href="http://www.raproject.com/ajax-edit-comments-20/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.raproject.com');" target="_blank">WP AJAX Edit Comments</a></li>
</ul>
<p><strong>First Step</strong> is to install the above mentioned plugins and activate them.</p>
<p><strong>Next&#8230; adding Subscribe To Comments and CommentLuv</strong> </p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/1a.jpg" alt="" title="Plugin Compatibility" width="500" height="100" class="alignnone size-full wp-image-155" /></p>
<p style="padding-bottom:0px;"><span id="more-154"></span></p>
<p>When you add the comment form you will notice two extra fields: Subscribe To Comments and CommentLuv. Adding these will make sure that the two plugins now work seamlessly with CForms. Yes it  really is that simple!</p>
<p><strong>And &#8230; WP AJAX Edit Comments</strong><br />
This is the simplest one to work with as all you need to do is upgrade to the latest version of this plugin. The plugin authors of both CFORMS and WP AJAX Edit Comments have worked together to make sure the plugins are compatible. So hats off to them.</p>
<h2>Comment Template</h2>
<p>When you post a comment using the CForms comment form, you might not get to see the comment posted until you refresh the page. This is because there is one last setting that needs to be adjusted.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/1b1.jpg" alt="" title="WP Comment Feature Settings" width="500" height="654" /></p>
<ol>
<li>Click global settings.</li>
<li>Next select &#8216;WP Comment Feature Settings&#8217;</li>
<li>The most important setting here is &#8216;Parent Comment Container&#8217;. Your comments are wrapped in an ol tag. Whatever id is set for that must be added to this field. Example:
<p class="box"><code>&lt;ol id="commentlist"&gt;</code></p>
<p>In this case the &#8216;Parent Comment Container&#8217; will be &#8216;commentlist&#8217;</li>
<li>Next we design the look of the comment template to match the one in comments.php. This can be done under &#8216;New comment HTML template&#8217;. If you click on Supported Variables you will see a list of all that you can use. The good news is that  there is now a gravatar option. Also if you use the Default Template as the starting point, it also has the option of alternating the class.
<p class="box"><code>&lt;li class="alt" id="comment-{id}"&gt;</code></p>
</li>
<li>Lastly you can also set the gravatar size to your liking.</li>
</ol>
<p>You should now be able to preview your comment without re-loading te page plud have the option of editing it if yo are using the WP AJAX Edit Comments plugin.</p>
<h2>Troubleshooting</h2>
<p>There are some problems you might run into.</p>
<ol>
<li>You might note that your first comment needs refreshing while the follow-up comments can be easily viewed without a reload.</p>
<p>There is a reason. Your most probably have your comment code like this:</p>
<pre><code>If Comment {
&lt;ol id="commentlist"&gt;
&lt;li&gt;
Comment Here
&lt;/li&gt;
&lt;/ol&gt;
}</code></pre>
<p>Note that the ol tag is only displayed if there is a comment. Your blog doesn&#8217;t know there is a first comment until the page is re-loaded. Since the ol tags are not used, CForms cannot show the comment. If you have them outside the &#8216;if comment&#8217; and the ol tag is rendered regardless of whether there is a comment or not then Cforms can work its magic.</li>
<li>You might find that you can no longer access your Wordpress admin or that pages go blank after you save settings. Check to make sure that cforms.php in your plugins/cforms folder does not have any empty spaces at the end. If the problem persists, then it can be a PHP memory issue. This can be set in your php.ini file if you run your own server or you can ask your host to increase PHP memory to say 32 or 64.</li>
</ol>
<p>Enjoy the new version of CForms &#8230; I&#8217;m sure this plugin will continue to improve. In which case there will be a part 3 to this tutorial someday.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form">CForms II - More on Using as a Comment Form</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li><li><a href='http://www.erummunir.com/36/updated-list-of-important-and-useful-wordpress-plugins-wp-251' rel='bookmark' title='Permanent Link: Updated List of Important and Useful Wordpress Plugins (WP 2.5.1)'>Updated List of Important and Useful Wordpress Plugins (WP 2.5.1)</a> <small>It is time for an updated list of useful Wordpress...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form/feed</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress 2.6 Uploading Broken Images - Fix</title>
		<link>http://www.erummunir.com/150/wordpress-26-uploading-broken-images-fix</link>
		<comments>http://www.erummunir.com/150/wordpress-26-uploading-broken-images-fix#comments</comments>
		<pubDate>Fri, 08 Aug 2008 09:31:31 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Broken Images]]></category>

		<category><![CDATA[Upload Image Problem]]></category>

		<category><![CDATA[Wordpress 2.6]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=150</guid>
		<description><![CDATA[If you have just upgraded to Wordpress 2.6 you might notice one slight problem. You are no longer able to upload your images. They show up as broken images. It doesn&#8217;t matter whether you use the AJAX option or not, the result is the same.
Surprisingly not everyone is facing this problem. 
A client of mine [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/150/wordpress-26-uploading-broken-images-fix">Wordpress 2.6 Uploading Broken Images - Fix</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you have just upgraded to Wordpress 2.6 you might notice one slight problem. You are no longer able to upload your images. They show up as broken images. It doesn&#8217;t matter whether you use the AJAX option or not, the result is the same.</p>
<p>Surprisingly not everyone is facing this problem. </p>
<p>A client of mine has the exact same configuration on his blog (give or take a couple of plugins) as mine. However, he faced the broken image problem while I did not. Of course we have blogs on different servers so that might have something to do with it.</p>
<p style="padding-bottom:0px;"><span id="more-150"></span></p>
<h2>The Fix</h2>
<p>The fix is pretty simple. It&#8217;s just finding it that takes time <img src='http://www.erummunir.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>Browse to your Wordpress admin settings.</li>
<li>Click on Miscellaneous</li>
<li>The first field there is &#8216;Store uploads in this folder&#8217; and most probably contains the folder wp-content/uploads. The second field &#8216;Full URL path to files (optional)&#8217; is most likely blank. It is this field which you need to fill up. Add the full path to your uploads folder as follows (assuming your upload folder is wp-content/uploads).
<p class="box"><code>http://www.yourdomain.com/wp-content/uploads</code></p>
<p>Your images should now upload without a problem.
</li>
</ol>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/150/wordpress-26-uploading-broken-images-fix">Wordpress 2.6 Uploading Broken Images - Fix</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/44/upgrading-to-wordpress-26' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.6'>Upgrading to Wordpress 2.6</a> <small>I finally upgraded to Wordpress 2.6. I first installed it...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/150/wordpress-26-uploading-broken-images-fix/feed</wfw:commentRss>
		</item>
		<item>
		<title>Separate Your Trackbacks From Your Comments</title>
		<link>http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments</link>
		<comments>http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments#comments</comments>
		<pubDate>Thu, 07 Aug 2008 18:37:46 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Pingbacks]]></category>

		<category><![CDATA[Trackbacks]]></category>

		<category><![CDATA[Wordpress Theme]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=126</guid>
		<description><![CDATA[It is amazing how many blogs do not do this. They have the messiest comments section with a zillion comments, trackbacks and pingbacks all jumbled up. And it is almost impossible to make some sense of out of the entire mess. Want to follow the conversation? Try evading the trackbacks and pingbacks along the way.
What&#8217;s [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments">Separate Your Trackbacks From Your Comments</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/118/adding-live-preview-for-comments' rel='bookmark' title='Permanent Link: Adding Live Preview For Comments'>Adding Live Preview For Comments</a> <small>If you scroll down you will see a live preview...</small></li><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>It is amazing how many blogs do not do this. They have the messiest comments section with a zillion comments, trackbacks and pingbacks all jumbled up. And it is almost impossible to make some sense of out of the entire mess. Want to follow the conversation? Try evading the trackbacks and pingbacks along the way.</p>
<h2>What&#8217;s the solution?</h2>
<p>Separate the two, of course.</p>
<p><strong>But How?</strong></p>
<p>That&#8217;s a good question. You will find plugins that do this but if you can manage something in the theme design, it is best to do so rather than install plugin upon plugin. Plugins are best used where you cannot achieve your objective without touching the core Wordpress files.</p>
<p style="padding-bottom:0px;"><span id="more-126"></span></p>
<p>In this case all you need to work with is your theme&#8217;s comments.php file.</p>
<h2>Step One - Counting Comments and Trackbacks</h2>
<p>Since the normal comment count includes both the comments and trackbacks, we first need to get a separate count for each.</p>
<p>Find this line in comments.php</p>
<p class="box"><code>&lt;!-- You can start editing here. --&gt;</code></p>
<p>Add the following code under it</p>
<pre><code>&lt;?php
$numTrackBacks = 0;
$numComments = 0;

foreach ($comments as $comment) {
$comment_type = get_comment_type(); 
if ($comment_type != 'comment') { $numTrackBacks++; }
else { $numComments++; }
}
?&gt;</code></pre>
<p><strong>Basic gist: </strong><br />
First we set $numTrackBacks and $numComments as 0. We then check the database and loop thru the comments and trackbacks. If the record retrieved is not a comment then a number is added to the trackback count otherwise the comment count is increased.</p>
<h2>Step Two - Showing the Comment Count</h2>
<p>Next we need to show the comment count before we display the comments.</p>
<p>Find this line</p>
<p class="box"><code>&lt;?php if ($comments) : ?&gt;</code></p>
<p>and add this code after it:</p>
<pre><code>&lt;?php echo $numComments;?&gt; 
&lt;? if ($numComments = 1) :?&gt;
Response
&lt;? else : ?&gt;
Responses
&lt;? endif; ?&gt;
to &amp;#8220;&lt;?php the_title(); ?&gt;&amp;#8221;</code></pre>
<p>This will spit out the comment count in this format:<br />
1 Response for &#8216;Post Title&#8217;<br />
5 Responses for &#8216;Post Title&#8217;</p>
<h2>Step Three - Displaying The Comments</h2>
<p>Next we have to display comments. Look for this line:</p>
<p class="box"><code>&lt;?php foreach ($comments as $comment) : ?&gt;</code></p>
<p>And add these two lines after it:</p>
<pre><code>&lt;?php $comment_type = get_comment_type(); ?&gt;
&lt;?php if($comment_type == 'comment') { ?&gt;</code></pre>
<p>What we are doing here is checking to see if the record retrieved is a comment.<br />
If so then we display it.</p>
<p>Since we have opened a loop, we also need to close it.</p>
<p>Find the line</p>
<p class="box"><code>&lt;?php endforeach; /* end for each comment */ ?&gt;</code></p>
<p>and replace it with:</p>
<pre><code>&lt;?php } /* End of is_comment statement */ ?&gt;
&lt;?php endforeach; /* end for each comment */ ?&gt;</code></pre>
<p>We have successfully displayed our comments without any trackbacks or pingbacks.</p>
<h2>Step Four - Displaying Trackbacks and Pingbacks</h2>
<p>Time to display our trackbacks and pingbacks.</p>
<p>Add this code right after you finish displaying the comments (in most themes it would be after the /ol tag):</p>
<pre>
<code>&lt;? if ($numTrackBacks != 0) :?&gt;
&lt;br /&gt;
&lt;h3&gt;Trackbacks and Pings 
(&lt;? echo $numTrackBacks; ?&gt;)&lt;/h3&gt;
&lt;? endif; ?&gt;
&lt;ol&gt;
&lt;?php foreach ($comments as $comment) : ?&gt;
&lt;?php $comment_type = get_comment_type(); ?&gt;
&lt;?php if($comment_type != 'comment') { ?&gt;
&lt;li&gt;&lt;?php comment_author_link() ?&gt;&lt;/li&gt;
&lt;?php } ?&gt;
&lt;?php endforeach; ?&gt;
&lt;/ol&gt;</code>
</pre>
<p>You can change the styling and format to suit your site. However, this basic code will show your trackbacks and pingbacks separated from your comments.</p>
<p>&#8211;</p>
<p>Now there is no excuse to not clean up your blog and organize your comments.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments">Separate Your Trackbacks From Your Comments</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/118/adding-live-preview-for-comments' rel='bookmark' title='Permanent Link: Adding Live Preview For Comments'>Adding Live Preview For Comments</a> <small>If you scroll down you will see a live preview...</small></li><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments/feed</wfw:commentRss>
		</item>
		<item>
		<title>Adding Live Preview For Comments</title>
		<link>http://www.erummunir.com/118/adding-live-preview-for-comments</link>
		<comments>http://www.erummunir.com/118/adding-live-preview-for-comments#comments</comments>
		<pubDate>Wed, 06 Aug 2008 10:38:35 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=118</guid>
		<description><![CDATA[If you scroll down you will see a live preview option for comments. Just try it out by typing in a comment. Pretty cool, huh!?
A friend asked me why this was useful and why anyone will want to see their comment twice? 
My answer:  If your comment is pretty long, the textarea will start [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/118/adding-live-preview-for-comments">Adding Live Preview For Comments</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments' rel='bookmark' title='Permanent Link: Separate Your Trackbacks From Your Comments'>Separate Your Trackbacks From Your Comments</a> <small>It is amazing how many blogs do not do this....</small></li><li><a href='http://www.erummunir.com/16/adding-code-to-your-wordpress-post' rel='bookmark' title='Permanent Link: Adding Code To Your Wordpress Post'>Adding Code To Your Wordpress Post</a> <small>Trying to add code to your wordpress post can be...</small></li><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you scroll down you will see a live preview option for comments. Just try it out by typing in a comment. Pretty cool, huh!?</p>
<p>A friend asked me why this was useful and why anyone will want to see their comment twice? </p>
<p>My answer:  If your comment is pretty long, the textarea will start to scroll and you won&#8217;t be able to look at your entire comment in on go. The preview on the other hand shows the comment in its entirety. This way you can see how it looks and proof read with ease before you post.</p>
<p style="padding-bottom:0px;"><span id="more-118"></span></p>
<p>I have gotten this technique from the <a href="http://www.rockatee.com/blog/creating-a-simple-comment-live-preview-to-use-with-expressionengine/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.rockatee.com');" target="_blank">Rockatee Blog</a>. So a big thank you to Maleika.</p>
<ol>
<li>First things first. You need to <a href="http://www.jquery.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.jquery.com');" target="_blank">download jQuery</a>. Lets just name it jquery.js and place it in  your theme folder. </li>
<li>Next download <a href="http://www.erummunir.com/wp-content/themes/em/preview.js">this file</a> and place it in your theme folder.</li>
<li>Now open header.php from your theme and add these lines in the head area:
<p class="box"><code>&lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory'); ?&gt;/jquery.js"&gt;&lt;/script&gt; 
&lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory'); ?&gt;/preview.js"&gt;&lt;/script&gt;</code></p>
</li>
<li>Last step is to add the following code to you comments.php file wherever you want the live preview to show up.
<p class="box"><code>&lt;div class="comment-preview"&gt; 
&lt;h3&gt;My Comment Preview&lt;/h3&gt; 
&lt;p class="live-preview"&gt;Add some instructions - this text will get replaced by the comment preview.&lt;/p&gt; 
&lt;/div&gt;</code></p>
</li>
<li>You can use the class p.live-preview to style the live comment preview.
</ol>
<p>See that was simple and you have your own comment live preview.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/118/adding-live-preview-for-comments">Adding Live Preview For Comments</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments' rel='bookmark' title='Permanent Link: Separate Your Trackbacks From Your Comments'>Separate Your Trackbacks From Your Comments</a> <small>It is amazing how many blogs do not do this....</small></li><li><a href='http://www.erummunir.com/16/adding-code-to-your-wordpress-post' rel='bookmark' title='Permanent Link: Adding Code To Your Wordpress Post'>Adding Code To Your Wordpress Post</a> <small>Trying to add code to your wordpress post can be...</small></li><li><a href='http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution' rel='bookmark' title='Permanent Link: CForms II - The All In One Contact Form Solution'>CForms II - The All In One Contact Form Solution</a> <small>Cforms II is a Wordpress plugin which makes it easy...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/118/adding-live-preview-for-comments/feed</wfw:commentRss>
		</item>
		<item>
		<title>Explode and Increase Comments Using These Wordpress Plugins</title>
		<link>http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins</link>
		<comments>http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins#comments</comments>
		<pubDate>Wed, 06 Aug 2008 09:31:33 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Akismet]]></category>

		<category><![CDATA[Anchor Text]]></category>

		<category><![CDATA[Backlinks]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Do-Follow]]></category>

		<category><![CDATA[Link Benefit]]></category>

		<category><![CDATA[No Follow]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Widget]]></category>

		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=111</guid>
		<description><![CDATA[I have already discussed a few techniques and plugins you can use to increase your comments. Here is a re-cap of some old and some new plugins I haven&#8217;t discussed before. All are must-haves if you want to explode your comments:

 Subscribe To Comments
I am absolutely staggered that so many bloggers don&#8217;t use this one. [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins">Explode and Increase Comments Using These Wordpress Plugins</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments' rel='bookmark' title='Permanent Link: How To Get Visitors To Leave Comments?'>How To Get Visitors To Leave Comments?</a> <small>You have to motivate your visitors to leave comments. How...</small></li><li><a href='http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business' rel='bookmark' title='Permanent Link: No Follow &#8230; Do Follow &#8230; What Is All This Business?'>No Follow &#8230; Do Follow &#8230; What Is All This Business?</a> <small>Wordpress, by default adds a no-follow tag to links in...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have already discussed a few techniques and plugins you can use to increase your comments. Here is a re-cap of some old and some new plugins I haven&#8217;t discussed before. All are must-haves if you want to explode your comments:</p>
<ol>
<li> <a href="http://txfx.net/code/wordpress/subscribe-to-comments/" onclick="javascript:pageTracker._trackPageview ('/outbound/txfx.net');" target="_blank"><strong>Subscribe To Comments</strong></a><br />
I am absolutely staggered that so many bloggers don&#8217;t use this one. Don&#8217;t they want their commenters coming back? When I comment on a blog, I really want to know when there is a reply. And subscribe to comments is the perfect plugin as it sends me an email whenever a comment is posted.</p>
<p>Without this option, your commenters may just get sick and tired of checking manually or not bother at all. Not everyone subscribes to the comments RSS feeds so make sure you provide this option.</p>
<p>I cannot stress this one enuff!</p>
<p style="padding-bottom:0px;"><span id="more-111"></span></p>
</li>
<li><a href="http://www.semiologic.com/software/wp-fixes/dofollow/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.semiologic.com');" target="_blank"><strong>Do Follow</strong></a><br />
Another plugin I have dedicated an <a href="http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business">entire post</a> to. Reward your posters by removing Wordpress&#8217; default rel=nofollow from comment links. A do-follow blog is more prone to comments especially if it is one that is just starting out. <a href="http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business">Read more about no follow, do-follow</a>.</li>
<li><a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.fiddyp.co.uk');" target="_blank"><strong>CommentLuv</strong></a><br />
Give your commenters additional incentive using CommentLuv. This plugin searches their RSS feed and adds a link to their last blog post in their comment. Your commenter gets a keyword rich anchor link to his/her blog. It is Google heaven for them <img src='http://www.erummunir.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</li>
<li><a href="http://www.scratch99.com/wordpress-plugin-keywordluv/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.scratch99.com');" target="_blank"><strong>KeywordLuv</strong></a><br />
This brings me to the next plugin and more Google heaven <img src='http://www.erummunir.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> You might have noticed people using spammy names with keywords in place of their real name. This is because they are trying to get keyword rich links back to their blogs. </p>
<p>This plugin makes the job easier without the spammy name bit. Just add your name as YourName@Your Keywords and Your Keywords will be used as the anchor link and your name will be shown separately. So if I write my name as Erum Munir@DotsnDashes Website Designs, my comment will show it as:</p>
<p class="box"><strong>Erum from <a href="http://www.dotsndashes.com" onclick="javascript:pageTracker._trackPageview ('/outbound/www.dotsndashes.com');" target="_blank">DotsnDashes Website Designs</a></strong></p>
<p>Pretty cool, eh?</li>
</ol>
<p>See it is just four basic plugins which offer so much in return.</p>
<p>A couple of other comment plugins which may help are:</p>
<ol>
<li> <a href="http://webgrrrl.net/archives/my-top-commentators-widget-quick-dirty.htm" onclick="javascript:pageTracker._trackPageview ('/outbound/webgrrrl.net');" target="_blank"><strong>Top Commentators</strong></a><br />
Adds a list of your top commentators to your sidebar. Will work best once you have a few comments to start with. Believe me when I say you don&#8217;t want an empty list. This plugin adds an incentive for repeat comments as one needs to have some comments to get to the top. How many really depends on how popular your blog is. I have seen people specifically commenting at blogs with this plugin. So it might work for you, too.
</li>
<li><a href="http://rmarsh.com/plugins/recent-comments/" onclick="javascript:pageTracker._trackPageview ('/outbound/rmarsh.com');" target="_blank"><strong>Recent Comments</strong></a><br />
This plugin works with the recent comments widget already a part of Wordpress 2.5.1 and Wordpress 2.6. It offers the option of styling your recent comments display to be a bit better looking than the default. You can use it to add a link to the commenter&#8217;s blog from your sidebar.
</li>
</ol>
<p>And remember when the comments start rolling in, these plugins will help keep you organized:</p>
<ol>
<li><strong>Akismet</strong><br />
As always keeps most spam at bay. Comes with the core Wordpress installation.</li>
<li><a href="http://techie-buzz.com/wordpress-plugins/better-comments-manager-wordpress-plugin-release.html" onclick="javascript:pageTracker._trackPageview ('/outbound/techie-buzz.com');" target="_blank"><strong>Better Comments Manager</strong></a><br />
It can get a bit tedious going to each post and replying to comments from there. Better Comments Manager lets you do so via the Wordpress admin - all in one place. A definite time saver if you have a lot of comments.</li>
<li> <a href="http://wordpress.org/extend/plugins/wp-paged-comments/" onclick="javascript:pageTracker._trackPageview ('/outbound/wordpress.org');" target="_blank"><strong>WP Paged Comments</strong></a><br />
Having too many comments can also be nightmare if your page flows on forever. Enter WP Paged Comments which adds pagination to your comments. Phew! What a relief and great alternate to that mile long page of comments.</li>
</ol>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins">Explode and Increase Comments Using These Wordpress Plugins</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments' rel='bookmark' title='Permanent Link: How To Get Visitors To Leave Comments?'>How To Get Visitors To Leave Comments?</a> <small>You have to motivate your visitors to leave comments. How...</small></li><li><a href='http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business' rel='bookmark' title='Permanent Link: No Follow &#8230; Do Follow &#8230; What Is All This Business?'>No Follow &#8230; Do Follow &#8230; What Is All This Business?</a> <small>Wordpress, by default adds a no-follow tag to links in...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins/feed</wfw:commentRss>
		</item>
		<item>
		<title>CForms II - The All In One Contact Form Solution</title>
		<link>http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution</link>
		<comments>http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution#comments</comments>
		<pubDate>Sun, 03 Aug 2008 12:52:25 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[CForms]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Contact Form]]></category>

		<category><![CDATA[Forms]]></category>

		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=76</guid>
		<description><![CDATA[Cforms II is a Wordpress plugin which makes it easy for you to add a contact form to your website.
Once you install and activate the plugin, don&#8217;t get intimidated by the dozens of  options available. It is pretty easy to set up. Click on CForms from your WP admin menu.

Click to view the bigger [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution">CForms II - The All In One Contact Form Solution</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form' rel='bookmark' title='Permanent Link: CForms II - More on Using as a Comment Form'>CForms II - More on Using as a Comment Form</a> <small>Good news! There is a new version of CForms that...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li><li><a href='http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments' rel='bookmark' title='Permanent Link: Separate Your Trackbacks From Your Comments'>Separate Your Trackbacks From Your Comments</a> <small>It is amazing how many blogs do not do this....</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.deliciousdays.com/cforms-plugin" onclick="javascript:pageTracker._trackPageview ('/outbound/www.deliciousdays.com');" target="_blank">Cforms II</a> is a Wordpress plugin which makes it easy for you to add a contact form to your website.</p>
<p>Once you install and activate the plugin, don&#8217;t get intimidated by the dozens of  options available. It is pretty easy to set up. Click on CForms from your WP admin menu.</p>
<p><a href="http://www.erummunir.com/wp-content/uploads/2008/08/1.jpg" style="background: none;" rel='gb_image[]'><img src="http://www.erummunir.com/wp-content/uploads/2008/08/2.jpg" alt="Click to view bigger image" /></a><br />
<small>Click to view the bigger image</small><br />
<span id="more-76"></span><br />
<strong>Please match the steps to the above image:</strong></p>
<ol>
<li>Select a contact form you want to edit. One form is pre-added for your convenience.</li>
<li>Alternatively you can also use these links to select the form you want to edit.</li>
<li>You can also add a new form or duplicate the current one.</li>
<li>Change your form name here and click update settings (12).</li>
<li>You can toggle AJAX settings on or off. You might want to do this to get CForms to work wither certain comment plugins. More on this later in the post.</li>
<li>One of the most useful features is you can add form presets. These provide a great starting point for your form. Amongst these are the basic form, form with error messages, comment form replacement and a few other options. I suggest starting with the form with error messages for your contact form and the comment form if you want to replace your default comment form with CForms (yes you can do that). </li>
<li> Add fields by entering the number you want add and clicking the plus sign.</li>
<li>Next add a field name.</li>
<li>Click on the little settings image next to the field name text box and it will give you a pop-up with all the options. This makes it easier to fill the options for that particular field.</li>
<li>Select the type of field you want for example an input field, a checkbox, a dropdown, etc. You might want to go back to the last step to update the options if you change the field type.</li>
<li>Choose from several options like making a field required, make it disabled, verify email address, make it read only, etc.</li>
<li>Once you are happy with the form click on update settings to save it.</li>
</ol>
<p>Once you have finished with the form above scroll down to the settings. These are specific to the chosen form so make sure you have selected the correct one.</p>
<h2>Redirection, Messages, Text and Button Label</h2>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/4.jpg"  /></p>
<p>The first few options relate to form specific text and messages that need to be shown on your contact form (for example what text you want on your submit button). You can change them if you want but the default values are fine, too.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/3.jpg"  /></p>
<p>These are the values you might want to change. Message summaries comprise of both error messages and form submission success or failure messages. Choose whether to display this above or below your form. I personally suggest above the form.</p>
<p>Next choose if you want to use javascript to show the errors. </p>
<p>Fancy error messages add certain styling to the fields that are showing errors. You can change this styling but the default is pink. </p>
<p>This was one way of highlighting the fields giving errors. Another is to add the error message along with each field. Checking Embedded Custom Error Messages will do the trick.</p>
<p>Next set the limit on how many form submissions your visitor can make.</p>
<p>You don&#8217;t need to deal with the redirection fields unless you want your visitors to be redirected to a specific page after filling the form.</p>
<h2>Using CForms as a Comment Form</h2>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/6.jpg"  /></p>
<p>Click on WP Comment Feature. It is the sixth option.</p>
<p>Select &#8216;Enable this form to optionally (user determined) act as a WP comment form&#8217;</p>
<p>Five new comment specific fields are added to your form once you do this.</p>
<p>Now go to form preset and choose the Comment Form preset. If you want you can add a captcha or Q&#038;A verification field to deter spammers.</p>
<p>Next add: </p>
<p class="box"><code>&lt;?  insert_cform('comments'); ?&gt;</code></p>
<p>in place of the regular comment form in your comments.php file. Replace comments with the name you choose for your comment form.</p>
<p>Your visitors should now be able to use the Cforms comment form to post a comment or send you a note.</p>
<p>If you have AJAX enabled on this form, then know that the page will not re-load once a comment has been added. Therefore the commentator will not see the comment styling you have added to comments.php until the page re-loads. </p>
<p>You can change the styling that gets shown until the page gets refreshed under the main menu for <em>Global Settings</em>. Choose &#8216;WP Comment Feature Settings&#8217; and make changes to &#8216;New comment HTML template&#8217;</p>
<h2>Enabling CForms Comment Form To Work With The Subscribe To Comments Plugin</h2>
<p>Since this is a very widely used plugin, let me explain how you can add the the checkbox to subscribe to your Cforms comment form.</p>
<p>Select &#8216;Core Form Admin / Email Options&#8217; and check the &#8216;Use custom input field NAMES &#038; ID&#8217;s&#8217;.</p>
<p><img src="http://www.erummunir.com/wp-content/uploads/2008/08/5.jpg"  /></p>
<p>This will enable you to add custom fields with their own specific values, id&#8217;s and names.</p>
<p>The subscribe to comments plugin needs a very specific checkbox with value, id and name equal to subscribe.</p>
<p>Now go up to your form and add a field. Here&#8217;s what you need to add to field name:</p>
<p class="box"><code>[id:subscribe]#Subscribe To Comments|subscribe</code></p>
<p>Let me explain. The [id:subscribe] adds subscribe as the name and id in the input tag for this checkbox. #Subscribe To Comments can be changed to whatever you want to display on your contact form next to the checkbox. Adding |subscribe adds subscribe as the value for the checkbox.</p>
<p><strong>Note:</strong> You will have to turn AJAX off  for this form as the subscribe to comments plugin does not work with AJAX on. </p>
<p>Also it will keep showing the checkbox to subscribe even when your visitor is subscribed. It won&#8217;t get swapped with the Manage Subscriptions link. </p>
<p>A workaround is to just add the subscribe to comments option outside of the comment form. This way people won&#8217;t have to leave a comment to subscribe either. Just add this line either to single.php or comments.php depending on where you want to place it.</p>
<p class="box"><code>&lt;?php show_manual_subscription_form(); ?&gt;</code></p>
<h2>What about other plugins</h2>
<p>I haven&#8217;t tried other plugins but for example the <a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin" onclick="javascript:pageTracker._trackPageview ('/outbound/www.fiddyp.co.uk');" target="_blank">CommentLuv</a> plugin uses the id, name and value &#8216;luv&#8217; so it should work the same way as above.</p>
<p><strong>AJAX and Comment Plugins</strong><br />
If you are using other comment plugins then it is a good idea to turn AJAX off. For example the <a href="http://www.raproject.com/ajax-edit-comments-20/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.raproject.com');" target="_blank">WP AJAX Edit Comments</a> also works better with AJAX turned off as you need to re-load the page to view the edit option.</p>
<p>If you have successfully used Cforms with other plugins then be sure to mention that via the comments.</p>
<p><strong>In conclusion</strong> &#8230; Cforms is one of the most extensive plugins I have seen. The plugin author has not only worked on adding all the features one can think of and need in a contact form but has also worked on its presentation. It is a pleasure to use this plugin with all its features and design options.</p>
<p>And I have only covered some of these features. There are lots more features and settings you can tweak to your heart&#8217;s content including the &#8216;Tell-A-Friend Form Support&#8217; and so much more.</p>
<p>So just install the plugin and enjoy.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution">CForms II - The All In One Contact Form Solution</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/154/cforms-ii-more-on-using-as-a-comment-form' rel='bookmark' title='Permanent Link: CForms II - More on Using as a Comment Form'>CForms II - More on Using as a Comment Form</a> <small>Good news! There is a new version of CForms that...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li><li><a href='http://www.erummunir.com/126/separate-your-trackbacks-from-your-comments' rel='bookmark' title='Permanent Link: Separate Your Trackbacks From Your Comments'>Separate Your Trackbacks From Your Comments</a> <small>It is amazing how many blogs do not do this....</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/76/cforms-ii-the-all-in-one-contact-form-solution/feed</wfw:commentRss>
		</item>
		<item>
		<title>How To Get Visitors To Leave Comments?</title>
		<link>http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments</link>
		<comments>http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments#comments</comments>
		<pubDate>Sat, 02 Aug 2008 20:45:05 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Anchor Text]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[FeedBurner]]></category>

		<category><![CDATA[Link Benefit]]></category>

		<category><![CDATA[Page Rank]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=58</guid>
		<description><![CDATA[You have to motivate your visitors to leave comments. 
How do you do that?
By giving them a good enuff reason to do so.
Like they say there is no such thing as a free lunch. 
We have already discussed one approach and that is by making your blog do-follow. 
Another option is the CommentLuv Plugin.
This plugin [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments">How To Get Visitors To Leave Comments?</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li><li><a href='http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business' rel='bookmark' title='Permanent Link: No Follow &#8230; Do Follow &#8230; What Is All This Business?'>No Follow &#8230; Do Follow &#8230; What Is All This Business?</a> <small>Wordpress, by default adds a no-follow tag to links in...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>You have to motivate your visitors to leave comments. </p>
<p>How do you do that?<br />
By giving them a good enuff reason to do so.</p>
<p>Like they say there is no such thing as a free lunch. </p>
<p>We have already discussed one approach and that is by <a href="http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business">making your blog do-follow</a>. </p>
<p><strong>Another option is the <a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.fiddyp.co.uk');" target="_blank">CommentLuv</a> Plugin.</strong></p>
<p>This plugin searches the commentator&#8217;s RSS feed and adds the title of their last blog post to their comment. </p>
<p style="padding-bottom:0px;"><span id="more-58"></span></p>
<h2 style="padding-bottom: 16px;">Benefits to the Commentator</h2>
<ol>
<li><strong>Increased Visitors</strong><br />
You are sharing your visitors with your commentors. If their post titles are attractive enuff, people browsing your blog are sure to click on  these links.</li>
<li><strong>SEO and Page Rank Benefit</strong><br />
Normally your commentator&#8217;s get a link using their names. The anchor text has no keywords and hence the link benefit not so much. A post title on the other hand may be full of keywords and hence great for Page Rank benefits. Not to mention it is a page rank benefit for their inner pages which may not get much Page Rank Luv normally.</li>
</ol>
<h2>There is just one problem</h2>
<p>And that is if you are redirecting your feed to FeedBurner. The way FeedBurner is set up by default, post titles link to Feedburner. This may give you some stats but guess who gets the page rank benefit?</p>
<p>So how to turn this off?</p>
<p>There is a great post on how to <a href="http://www.shankrila.com/tech-stuff/blogging-tip-turn-off-feedburner-redirect-in-rss-feeds/" onclick="javascript:pageTracker._trackPageview ('/outbound/www.shankrila.com');" target="_blank">Turn off FeedBurner Redirect in RSS Feeds</a>. Be sure to do this to get the full benefit of this plugin for yourself and make sure to educate your commentators on this issue as well.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments">How To Get Visitors To Leave Comments?</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/111/explode-and-increase-comments-using-these-wordpress-plugins' rel='bookmark' title='Permanent Link: Explode and Increase Comments Using These Wordpress Plugins'>Explode and Increase Comments Using These Wordpress Plugins</a> <small>I have already discussed a few techniques and plugins you...</small></li><li><a href='http://www.erummunir.com/27/no-follow-do-follow-what-is-all-this-business' rel='bookmark' title='Permanent Link: No Follow &#8230; Do Follow &#8230; What Is All This Business?'>No Follow &#8230; Do Follow &#8230; What Is All This Business?</a> <small>Wordpress, by default adds a no-follow tag to links in...</small></li><li><a href='http://www.erummunir.com/8/most-useful-wordpress-plugins' rel='bookmark' title='Permanent Link: Most Useful Wordpress Plugins'>Most Useful Wordpress Plugins</a> <small>Since I design custom blogs for my clients, I have...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/58/how-to-get-visitors-to-leave-comments/feed</wfw:commentRss>
		</item>
		<item>
		<title>Upgrading to Wordpress 2.6</title>
		<link>http://www.erummunir.com/44/upgrading-to-wordpress-26</link>
		<comments>http://www.erummunir.com/44/upgrading-to-wordpress-26#comments</comments>
		<pubDate>Fri, 01 Aug 2008 21:55:19 +0000</pubDate>
		<dc:creator>Erum Munir</dc:creator>
		
		<category><![CDATA[All Things Wordpress]]></category>

		<category><![CDATA[Upgrading Wordpress]]></category>

		<category><![CDATA[Wordpress 2.6]]></category>

		<guid isPermaLink="false">http://www.erummunir.com/?p=44</guid>
		<description><![CDATA[I finally upgraded to Wordpress 2.6. 
I first installed it locally to test it out and make sure that nothing was broken and the website was showing up fine. Good idea on my part. 
Turns out there was a permalinks issue. 
Everything was totally mucked up. I couldn&#8217;t get the post pages to load. I [...]<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/44/upgrading-to-wordpress-26">Upgrading to Wordpress 2.6</a></p>



Related posts:<ol><li><a href='http://www.erummunir.com/460/upgrading-to-wordpress-27' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.7'>Upgrading to Wordpress 2.7</a> <small>It seems like there is a new Wordpress version every...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li><li><a href='http://www.erummunir.com/12/wordpress-updated' rel='bookmark' title='Permanent Link: Wordpress Updated'>Wordpress Updated</a> <small>I finally took the plunge and upgraded this blog to...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I finally upgraded to Wordpress 2.6. </p>
<p>I first installed it locally to test it out and make sure that nothing was broken and the website was showing up fine. Good idea on my part. </p>
<h2>Turns out there was a permalinks issue. </h2>
<p>Everything was totally mucked up. I couldn&#8217;t get the post pages to load. I was getting tagged headings on category pages and the rest were just giving a page not found error. Oops! </p>
<p>Am I glad I didn&#8217;t directly upgrade live!</p>
<p>But there is good news. </p>
<p style="padding-bottom:0px;"><span id="more-44"></span></p>
<h2>This issue has a fairly simple solution.</h2>
<p>Turns out you gotta make sure that the category and tag base fields are not empty in your Permalinks section. So I promptly added category for the the category base and tags for tag base. And that is all it took!</p>
<p>Phew.</p>
<h2>On to checking the plugins</h2>
<p>Apparently all of them are working. Nothing broken and the site looks ok. Will find out soon enuff if something refuses to work. So far so good.</p>
<h2> What about the new features?</h2>
<p>Well  the three that really stand out are:</p>
<ol>
<li><strong>Plugins Enhanced</strong><br />
The plugins section offers an enhanced experience and a comparitively clutter free environment. The active plugins are separated from the deactivated ones. There is also a list of recently deactivated plugins. </p>
<p>Better still you can finally delete plugins from within Wordpress. About time this option got added.</li>
<li><strong>Post Revisions</strong><br />
Nice! Just in case you muck up a post and want to go back to an older version, now you can! This is especially useful for people who might have several authors working on the same piece. </p>
<p>The only thing is I wish there was an option to delete these revisions - I haven&#8217;t found one yet. I mean I don&#8217;t want to save a version every time I correct a spelling error. </li>
<li><strong>Review Template</strong><br />
I have saved the best for last. Being a designer, this is the ultimate feature for me. Now instead of testing live, one can preview the template in the design section. This totally blew me away! Extremely useful feature for when you are looking to change your theme but want to confirm it works fine first.</li>
</ol>
<p>There is also the Turbo feature but I haven&#8217;t tested it out yet. So I&#8217;ll comment on that once I do.</p>
<p>All in all it hasn&#8217;t been as bad as I expected and it has been more or less a smooth enuff ride.</p>
<p>-----<br />
Post from: <a href="http://www.erummunir.com">ErumMunir.com</a>.<br />
Don't forget to leave a comment at:<br /></p>
<p><a href="http://www.erummunir.com/44/upgrading-to-wordpress-26">Upgrading to Wordpress 2.6</a></p>


<p>Related posts:<ol><li><a href='http://www.erummunir.com/460/upgrading-to-wordpress-27' rel='bookmark' title='Permanent Link: Upgrading to Wordpress 2.7'>Upgrading to Wordpress 2.7</a> <small>It seems like there is a new Wordpress version every...</small></li><li><a href='http://www.erummunir.com/21/wordpress-26-has-been-released' rel='bookmark' title='Permanent Link: Wordpress 2.6 Has Been Released'>Wordpress 2.6 Has Been Released</a> <small>While I was busy designing his blog, my friend Rob...</small></li><li><a href='http://www.erummunir.com/12/wordpress-updated' rel='bookmark' title='Permanent Link: Wordpress Updated'>Wordpress Updated</a> <small>I finally took the plunge and upgraded this blog to...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.erummunir.com/44/upgrading-to-wordpress-26/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
