<?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>Bloganol.com &#187; wordpress</title>
	<atom:link href="http://www.bloganol.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bloganol.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Sep 2010 12:18:33 +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>WordPress Hack : Get the first Image from the post and display it</title>
		<link>http://www.bloganol.com/2009/12/wordpress-hack-image-post-display.html</link>
		<comments>http://www.bloganol.com/2009/12/wordpress-hack-image-post-display.html#comments</comments>
		<pubDate>Thu, 31 Dec 2009 05:11:40 +0000</pubDate>
		<dc:creator>Deineshd</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.bloganol.com/?p=2629</guid>
		<description><![CDATA[This is the first post about the wordpress hack published on Bloganol about getting the first image from the post and displaying it.This is really useful wordpress hack and also requested by many users.Thanks to Wprecipes for publishing code for such important hack. To implement this hack on your wordpress blog First of all copy the following block of code and paste it to your functions.php file. function catch_that_image() { global $post, $posts; $first_img = [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="dropcap-first">This is the first post about the wordpress hack published on Bloganol about getting the first image from the post and displaying it.This is really useful wordpress hack and also requested by many users.Thanks to <a title="Goto Wprecipes.com" href="http://www.wprecipes.com/" target="_blank">Wprecipes</a> for publishing code for such important hack.<br />
<img class="alignleft size-full wp-image-2634" title="thumb" src="http://www.bloganol.com/wp-content/uploads/2009/12/thumb.jpg" alt="thumb Wordpress Hack : Get the first Image from the post and display it" width="474" height="216" style="margin-right:300px;" /></p>
<p>To implement this hack on your wordpress blog First of all copy the following block of code and paste it to your <em>functions.php</em> file.</p>
<div class="codex"><code>function catch_that_image() {<br />
global $post, $posts;<br />
$first_img = '';<br />
ob_start();<br />
ob_end_clean();<br />
$output = preg_match_all('/&lt;img.+src=[\'"]([^\'"]+)[\'"].*&gt;/i', $post-&gt;post_content, $matches);<br />
$first_img = $matches [1] [0];<br />
if(empty($first_img)){ //Defines a default image<br />
$first_img = "/images/default.jpg";<br />
}<br />
return $first_img;<br />
}<br />
</code></div>
<p>Now in second step Paste the following code where you would like to display the Image.This Tag simply call the function within the loop to display the first image from the post:</p>
<div class="codex"><code>&lt;img src="&lt;?php echo catch_that_image() ?&gt;" alt="" class="th" /&gt; </code></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bloganol.com/2009/12/wordpress-hack-image-post-display.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress 2.9 &#8216;Carmen&#8217; now available for download</title>
		<link>http://www.bloganol.com/2009/12/wordpress-29-carmen-download.html</link>
		<comments>http://www.bloganol.com/2009/12/wordpress-29-carmen-download.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 14:58:15 +0000</pubDate>
		<dc:creator>Deineshd</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.bloganol.com/?p=2565</guid>
		<description><![CDATA[The latest version of the world&#8217;s largest self hosted blogging software wordpress is finally released.The latest version is wordpress 2.9 which is released after the six months of the release of previous version of wordpress2.8.This version is called the WordPress 2.9 &#8220;Carmen&#8221; on the behalf of honor of magical jazz vocalist Carmen McRae. This version of wordpress got many more features than the previous version of wordpress.The main features of this version is Global undo/”trash” [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="dropcap-first"><img class="alignleft size-medium wp-image-2572" title="wordpress-logo" src="http://www.bloganol.com/wp-content/uploads/2009/12/wordpress-logo-300x233.jpg" alt="wordpress logo 300x233 Wordpress 2.9 Carmen now available for download" width="300" height="233" />The latest version of the world&#8217;s largest self hosted blogging software wordpress is finally released.The latest version is wordpress 2.9 which is released after the six months of the release of previous version of wordpress2.8.This version is called the WordPress 2.9 &#8220;Carmen&#8221; on the behalf of honor of magical jazz vocalist Carmen McRae.</p>
<p>This version of wordpress got many more features than the previous version of wordpress.The main features of this version is<strong> Global undo/”trash”</strong> feature which allows you to restore your old deleted posts and comment.Another great feature is <strong>Built-in image editor</strong> which allows you to crop, edit, rotate, flip, and scale your images.Moreover with these version you can update 10 plugins at the same time from your dashboard and it allows you to embed the videos on the post easily.These are the few main features of this latest version.It too got other features that makes you make blogging easy.</p>
<p>WordPress 2.9 is free to <a title="Download wordpress 2.9" href="http://wordpress.org/download/">download</a> at wordpress.Aftere you download upload it to your web hosting and activate it.You can too update it from your WordPress dashboard by going to <strong>Tools</strong> &gt; <strong>Upgrade.</strong>.Moreover you can update it from <strong>Fantastico</strong> &gt;<strong> WordPress</strong> from your webhosting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloganol.com/2009/12/wordpress-29-carmen-download.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>26 most recommended wordpress plugins for better wordpress blog</title>
		<link>http://www.bloganol.com/2009/11/6-recommendated-wordpress-plugins-newbies.html</link>
		<comments>http://www.bloganol.com/2009/11/6-recommendated-wordpress-plugins-newbies.html#comments</comments>
		<pubDate>Fri, 13 Nov 2009 10:33:27 +0000</pubDate>
		<dc:creator>Deineshd</dc:creator>
				<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.bloganol.com/?p=2374</guid>
		<description><![CDATA[It has not been so much time that I have been transferred to wordpress but I came to knew a lot about it and I find it more interesting and easy than Blogger.Here are lists of  26 wordpress Plugins that are strongly recommended for wordpress users. 1.   All in one SEO Pack This is a single pack wordpress plugin which does all the optimization of your blog Search Engines.This Plugin automatically optimizes your title for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="dropcap-first">It has not been so much time that I have been transferred to wordpress but I came to knew a lot about it and I find it more interesting and easy than Blogger.Here are lists of  26 wordpress Plugins that are strongly recommended for wordpress users.</p>
<p><strong>1.   All in one SEO Pack</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2405" style="margin-right:500px;" title="all-in-one-seo-pack-screenshot" src="http://www.bloganol.com/wp-content/uploads/2009/11/all-in-one-seo-pack-screenshot-300x107.png" alt="all in one seo pack screenshot 300x107 26 most recommended wordpress plugins for better wordpress blog" width="300" height="107" /></strong></p>
<p><strong> </strong></p>
<p>This is a single pack wordpress plugin which does all the optimization of your blog Search Engines.This Plugin automatically optimizes your title for search engines and helps you to get higher ranking in search engines.</p>
<p><a title="Download all in one SEO pack" href="http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip" target="_blank">download</a> | <a title="Installation help for all in one SEO pack" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/installation/" target="_blank">Installation</a></p>
<p><strong>2.   Google XML Sitemaps</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2408" style="margin-right:500px;" title="xml-sitemap-generator" src="http://www.bloganol.com/wp-content/uploads/2009/11/xml-sitemap-generator-300x138.png" alt="xml sitemap generator 300x138 26 most recommended wordpress plugins for better wordpress blog" width="300" height="138" /></strong></p>
<p><strong> </strong></p>
<p>This plugin is also related to search Engine optimization.This plugin automatically generate a special XML sitemaps which will help different search engines like Google,Yahoo,Bing to better index your blog.</p>
<p><a title="Download Google Xml Sitemaps" href="http://downloads.wordpress.org/plugin/google-sitemap-generator.3.1.8.zip" target="_blank">download</a> | <a title="Installation help for Goolge XML Sitemaps" href="http://wordpress.org/extend/plugins/google-sitemap-generator/installation/" target="_blank">Installation</a></p>
<p><strong>3.   Advertising  manager</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2409" style="margin-right:500px;" title="advertising-manager" src="http://www.bloganol.com/wp-content/uploads/2009/11/advertising-manager-300x177.jpg" alt="advertising manager 300x177 26 most recommended wordpress plugins for better wordpress blog" width="300" height="177" /></strong></p>
<p><strong> </strong></p>
<p>Advertising manager is an ads managing plugin that helps you manage ads on your blog and also most recommended for the ad publishes.This plugin will manage and rotate your Google Adsense and other ads on your WordPress blog.It not only recognizes ad networks like Adsense,adbrite,widgetbucks,etc but also unsupported ad networks also.</p>
<p><a title="Download Advertising Manager" href="http://downloads.wordpress.org/plugin/advertising-manager.3.4.8.zip" target="_blank">download</a> | <a title="Installation help for Advertising manager" href="http://wordpress.org/extend/plugins/advertising-manager/installation/" target="_blank">Installation</a></p>
<p><strong>4.   Akismet</strong></p>
<p>Akismit checks your Blog against the spam comments posted  in your blog and automatically move them to spam section in the spam comments section without publishing it.You can review those comments in future and publish them.This plugin is strongly recommended to all the wordpress users.</p>
<p><a title="Download Akismet" href="http://downloads.wordpress.org/plugin/akismet.zip" target="_blank">download</a> | <a title="Installation help Akismet" href="http://wordpress.org/extend/plugins/akismet/installation/" target="_blank">Installation</a></p>
<p><strong>5.   Similar Posts Plugin</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2414" style="margin-right:500px;" title="related-posts" src="http://www.bloganol.com/wp-content/uploads/2009/11/related-posts-300x206.png" alt="related posts 300x206 26 most recommended wordpress plugins for better wordpress blog" width="300" height="206" /></strong></p>
<p><strong> </strong></p>
<p>Similar Posts plugin automatically displays the similar posts related to that post.This plugin is also said as Related posts plugin.This plugin helps your blog to explore your blog internal pages.</p>
<p><a title="Download Similar posts plugin" href="http://downloads.wordpress.org/plugin/similar-posts.2.6.2.0.zip" target="_blank">download</a> | <a title="Installation help for Similar Posts wordpress Plugin" href="http://wordpress.org/extend/plugins/similar-posts/installation/" target="_blank">Installation</a></p>
<p><strong> 6.  Site Table of Contents Plugin</strong></p>
<p>This plugin helps you create table of contents page for your wordpress blog easily.This plugin helps your users to easily explorer your blog posts easily according to your blog categories.</p>
<p><a title="Download Similar posts plugin" href="http://downloads.wordpress.org/plugin/site-table-of-contents.0.4.zip" target="_blank">download</a> | <a title="Installation help for Similar Posts wordpress Plugin" href="http://wordpress.org/extend/plugins/site-table-of-contents/installation/" target="_blank">Installation</a></p>
<p><strong>7.   WordPress Recent Posts Plugin</strong></p>
<p>This might be the most simple and also the useful plugin for wordpress blog.This plugin helps you show your recent posts in your blog’s sidebar or somewhere else in your blog where you have pasted the code.</p>
<p><a title="Download recent posts plugin" href="http://downloads.wordpress.org/plugin/recent-posts.zip" target="_blank">download</a> | <a title="Installation help for recent posts" href="http://wordpress.org/extend/plugins/recent-posts/installation/" target="_blank">Installation</a></p>
<p><strong>8.   WordPress Recent comments Plugin</strong></p>
<p>Like recent posts plugin its also the  most simple and also the useful plugin for wordpress blog.This plugin helps you show your recent comments in your blog’s sidebar or somewhere else in your blog where you have pasted the code.</p>
<p><a title="Download recent comments plugin" href="http://downloads.wordpress.org/plugin/recent-comments.zip" target="_blank">download</a> | <a title="Installation help for recent comments" href="http://wordpress.org/extend/plugins/recent-comments/installation/" target="_blank">Installation</a></p>
<p><strong>9.   Popular posts Plugin</strong></p>
<p>This plugin shows all the popular posts published on your blog according to the number of comments posted on that post.This is also an important wordpress plugin.</p>
<p><a title="Download Popular posts plugin" href="http://downloads.wordpress.org/plugin/most-popular-posts.1.4.2.zip" target="_blank">download</a> | <a title="Installation help for Popular Posts" href="http://wordpress.org/extend/plugins/most-popular-posts/installation/" target="_blank">Installation</a></p>
<p><strong>10.   WP-PageNavi </strong></p>
<p><strong><img class="alignleft size-full wp-image-2423" style="margin-right:500px;" title="pagenavi" src="http://www.bloganol.com/wp-content/uploads/2009/11/pagenavi.png" alt="pagenavi 26 most recommended wordpress plugins for better wordpress blog" width="500" height="80" /><br />
</strong></p>
<p>This help helps you create page navigation widget in your blog that helps users to browse your blog contents more easily.This Plugin surely helps you gain more page views in your blog.</p>
<p><strong>11.   Commentluv Plugin</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2418" style="margin-right:500px;" title="comment luv" src="http://www.bloganol.com/wp-content/uploads/2009/11/comment-luv-300x135.jpg" alt="comment luv" width="300" height="135" /><br />
</strong></p>
<p>This plugin shows the link of the recent posts of your commentator after their comment in your blog.This plugin encourages your users to comment more in your blog which is really very useful.</p>
<p><a title="Download Comment Luv plugin" href="http://downloads.wordpress.org/plugin/commentluv.2.7.63.zip" target="_blank">download</a> | <a title="Installation help for Comment Luv" href="http://wordpress.org/extend/plugins/commentluv/installation/" target="_blank">Installation</a></p>
<p><strong>12.  Easy  Google Syntax highlighter</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2419" style="margin-right:500px;" title="c9b25_google-syntax-highlighter" src="http://www.bloganol.com/wp-content/uploads/2009/11/c9b25_google-syntax-highlighter-300x156.png" alt="c9b25 google syntax highlighter 300x156 26 most recommended wordpress plugins for better wordpress blog" width="300" height="156" /><br />
</strong></p>
<p>Easy Google syntax highlighter allows you to put the different HTML,php,CSS ,etc codes in your blog in systematic and clean way.It automatically include languages to highlight, thereby improving page loading performance.</p>
<p><a title="Download Google Syntax highlighter" href="http://downloads.wordpress.org/plugin/easy-google-syntax-highlighter.zip" target="_blank">download</a> | <a title="Installation help for Google Syntax highlighter" href="http://wordpress.org/extend/plugins/easy-google-syntax-highlighter/installation/" target="_blank">Installation</a></p>
<p><strong>13.   KB robots.txt Plugin</strong></p>
<p>When robots from different search engines they begin by ” http://example.com/robots.txt ” checking it for special instructions.This KB robots.txt plugins lets you create and edit your robots.txt file within the wordpress which will surely make a difference on your ranking on different search engines.</p>
<p><a title="Download KB robots.txt" href="http://downloads.wordpress.org/plugin/kb-robotstxt.zip" target="_blank">download</a> | <a title="Installation help KB robots.txt" href="http://wordpress.org/extend/plugins/kb-robotstxt/installation/" target="_blank">Installation</a></p>
<p><strong>14.   WordPress Download Monitor</strong></p>
<p>WordPress is a plugin for uploading and managing downloads, tracking download hits, and displaying links from your wordpress account.This plugin requires wordpress version higher than 2.5.</p>
<p><a title="Download WordPress Download Monitor" href="http://downloads.wordpress.org/plugin/download-monitor.3.2.3.zip" target="_blank">download</a> | <a title="Installation help WordPress Download Monitor" href="http://wordpress.org/extend/plugins/download-monitor/installation/" target="_blank">Installation</a></p>
<p><strong>15.   WP Greet box</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2420" style="margin-right: 500px;" title="WP greetbox feed" src="http://www.bloganol.com/wp-content/uploads/2009/11/WP-greetbox-feed-300x42.png" alt="WP greetbox feed" width="300" height="42" /><br />
</strong></p>
<p>WP greet box shows the different greeting messages to your new visitors on the basis of their referring URL at the post of your each post.You can too edit the greeting messages as your desire.</p>
<p><a title="Download WP greet box" href="http://downloads.wordpress.org/plugin/wp-greet-box.zip" target="_blank">download</a> | <a title="Installation help for WP greet box" href="http://wordpress.org/extend/plugins/wp-greet-box/installation/" target="_blank">Installation</a></p>
<p><strong>16.   Subscribe to Comments WordPress plugin</strong></p>
<p>This plugin is also related to the comment from.Its a robust plugin that enables your blog commentators easy to signup for email notifications for subsequent entries. When new comments are posted on the post on which the user has chosen Subscribe to comments,The new comments will be notified to email Inbox of that user.</p>
<p><a title="Download Subscribe to comments Plugin" href="http://downloads.wordpress.org/plugin/subscribe-to-comments.zip" target="_blank">download</a> | <a title="Installation help for Subscribe to comments Plugin" href="http://wordpress.org/extend/plugins/subscribe-to-comments/installation/" target="_blank">Installation</a></p>
<p><strong>17.   Digg Digg</strong></p>
<p>Digg Digg is a social bookmarking plugin for your wordpress blog which helps to display the social bookmarking buttons on your blog easily.This plugin will Integrate “Digg”,”Reddit”,”dZone”,”Yahoo Buzz”,”TweetMeme(twitter)”, “fbshare(facebook)” and “Polladium”  into the posts of your wordpress blog.You can too customize the settings of the plugin.</p>
<p><a title="Download Digg Digg" href="http://downloads.wordpress.org/plugin/digg-digg.2.3.zip" target="_blank">download</a> | <a title="Installation help for Subscribe to comments Plugin" href="http://wordpress.org/extend/plugins/digg-digg/installation/" target="_blank">Installation</a></p>
<p><strong>18.   WordPress Thread comment</strong></p>
<p>WordPress Thread comment plugin is an enhancement for your wordpress’s comment function.This plugin will add Reply function on your existed comment ,Then the discussion will be displayed threaded or nested.</p>
<p><a title="Download WordPress Thread comment Plugin" href="http://downloads.wordpress.org/plugin/wordpress-thread-comment.1.4.9.4.zip" target="_blank">download</a> | <a title="Installation help for WordPress thread comment plugin" href="http://wordpress.org/extend/plugins/wordpress-thread-comment/installation/" target="_blank">Installation</a></p>
<p><strong>19.   Wp Gravators Plugin</strong></p>
<p><strong><img class="alignleft size-medium wp-image-2421" style="margin-right:500px;" title="wp gravatars" src="http://www.bloganol.com/wp-content/uploads/2009/11/wp-gravatars-300x98.png" alt="wp gravatars" width="300" height="98" /><br />
</strong></p>
<p>This plugin is related to the comment function of your wordpress blog.This plugin will show the garavators or small thumbnail of the commenattor next by the comment in your blog comment section.This plugin will make your blog comment section more attractive.</p>
<p><a title="Download WordPress Gravatar Plugin" href="http://wordpress.org/extend/plugins/wp-gravatar/" target="_blank">download</a> | <a title="Installation help for WordPress Gravatars plugin" href="http://wordpress.org/extend/plugins/wp-gravatar/installation/" target="_blank">Installation</a></p>
<p><strong>20.   New Tag Cloud</strong></p>
<p><strong><img class="alignleft size-full wp-image-2422" style="margin-right:500px;" title="wp new tag cloud" src="http://www.bloganol.com/wp-content/uploads/2009/11/wp-new-tag-cloud.png" alt="wp new tag cloud" width="186" height="130" /><br />
</strong></p>
<p>This plugin generates the small Tag cloud widget for your blog which makes your blog posts browse easily.You can use New Tag Cloud directly in a post/page, in the theme as PHP code or as widget.This new Tag cloud is easily customize the font size,font size type and more.</p>
<p><a title="Download WordPress Tag Cloud" href="http://downloads.wordpress.org/plugin/new-tag-cloud.0.7.zip" target="_blank">download</a> | <a title="Installation help for WordPress new Tagcloud" href="http://wordpress.org/extend/plugins/new-tag-cloud/installation/" target="_blank">Installation</a></p>
<p><strong>21.   AFlinker Plugin</strong></p>
<p>This plugin is strongly recommended for affiliate marketers on wordpress.This plugin not only helps users to cloak their affiliate link but also helps bloggers to shorten the long link.</p>
<p><a title="Download AFlinker plugin" href="http://www.aflinker.com/download" target="_blank">download</a> | <a title="Installation help AFlinker" href="http://www.aflinker.com/" target="_blank">Installation</a></p>
<p><strong>22.   Google Analytics for WordPress</strong></p>
<p>Google analytics for wordpress is a plugin that automatically tracks and segments all outbound links from within posts, comment author links, links within comments, blogroll links and downloads.It also allows you to track adsense clicks,adds extra search engines, track image search queries and it will even work together with Urchin.This plugin is strongly recommendated for wordpress users.</p>
<p><a title="Download Google analytics for wordpress" href="http://downloads.wordpress.org/plugin/google-analytics-for-wordpress.3.2.4.zip" target="_blank">download</a> | <a title="Installation help forGoogle analytics for WordPress" href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/installation/" target="_blank">Installation</a></p>
<p><strong>23.   Broken Link Checker</strong></p>
<p>This plugin will monitor the broken links and missing images in your blog and lets you know about it.If you have transferred tour blog to wordpress platform from other then this plugin is strongly recommended to you.</p>
<p><a title="Download Broken link checker plugin" href="http://downloads.wordpress.org/plugin/broken-link-checker.0.6.5.zip" target="_blank">download</a> | <a title="Installation help for Broken Link Checker" href="http://wordpress.org/extend/plugins/broken-link-checker/installation/" target="_blank">Installation</a></p>
<p><strong>24.   SEO Friendly Images</strong></p>
<p>SEO Friendly Images is a WordPress optimization plugin which automatically updates all images with proper ALT and TITLE attributes. If your images do not have ALT and TITLE already set, SEO Friendly Images will add them according the options you set. Additionally this makes the post W3C/xHTML valid as well.</p>
<p><a title="Download BSEO friendly images plugin" href="http://downloads.wordpress.org/plugin/seo-image.zip" target="_blank">download</a> | <a title="Installation help for SEO friendly Images" href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images" target="_blank">Installation</a></p>
<p><strong>25.   Popularity Contest WordPress Plugin</strong></p>
<p>Popularity Contest keeps a count of your post, category and archive views, comments, trackbacks, etc. and uses them to determine which of your posts are most popular. There are numerical values assigned to each type of view and feedback; these are used to create a ‘popularity score’ for each post.</p>
<p><a title="Download Popularity contest Plugin" href="http://downloads.wordpress.org/plugin/popularity-contest.2.0b2.zip" target="_blank">download</a> | <a title="Installation help for Popularity contest wordpress plugin" href="http://wordpress.org/extend/plugins/popularity-contest/installation/" target="_blank">Installation</a></p>
<p><strong>26.   W3 Total Cache</strong></p>
<p>W3 Total Cache Plugin helps you improve the user performance of your blog by improving your server performance, caching every aspect of your site, reducing the download time of your theme and providing transparent content delivery network (CDN) integration.</p>
<p><a title="Download W3 Total Cache" href="http://downloads.wordpress.org/plugin/w3-total-cache.0.8.zip" target="_blank">download</a> | <a title="Installation help for w3 Total Cache" href="http://wordpress.org/extend/plugins/w3-total-cache/installation/" target="_blank">Installation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloganol.com/2009/11/6-recommendated-wordpress-plugins-newbies.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>A complete guide on how to move your blogger blog to self hosted wordpress</title>
		<link>http://www.bloganol.com/2009/11/complete-guide-move-blogger-blog-hosted-wordpress.html</link>
		<comments>http://www.bloganol.com/2009/11/complete-guide-move-blogger-blog-hosted-wordpress.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 16:04:13 +0000</pubDate>
		<dc:creator>Deineshd</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.bloganol.com/?p=2330</guid>
		<description><![CDATA[Moving Blogger blog to self hosted wordpress is also the most important decision made by a  blogger.There are many reasons that encourages a blogger to move their blog to self hosted wordpress but moving your blog during the early days of your blog is better than to move your blog after a long period of time because there occurs more errors during the move. Some simple terms to be known before you proceed Moving your [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="dropcap-first"><img class="size-full wp-image-2364 alignleft" title="blogger to wordpress" src="http://www.bloganol.com/wp-content/uploads/2009/11/blogger-to-wordpress.jpg" alt="blogger to wordpress" width="248" height="122" />Moving Blogger blog to self hosted wordpress is also the most important decision made by a  blogger.There are many reasons that encourages a blogger to move their blog to  self hosted wordpress but moving your blog during the early days of your blog is better than to move your blog after a long period of time because there occurs more errors during the move.</p>
<p><strong>Some simple terms to be known before you proceed<br />
</strong></p>
<ul>
<li>Moving your blog to self hosted wordpress is an important decision that you have made.</li>
<li>Since Blogger and wordpress  are  different blogging platforms , many things and features differ from each other.</li>
<li>You must have the concept about wordpress themes,wordpress plugins and other basic terms before you move your blog to wordpress.</li>
<li>Once you move your blog to wordpress your original blogger blog will not get lost.</li>
<li>In future if you like to rollback your upto date wordpress blog into blogger then its a really hard issue.</li>
</ul>
<p><strong>Some main Requirements</strong></p>
<ul>
<li>A registered domain name like .com , .org  , .me which has got the feature of updating nameservers.</li>
<li>A web hosting service that meets the <a href="http://wordpress.org/about/requirements/">requirements of wordpress</a>.</li>
</ul>
<p><strong>1. Be sure and confident</strong></p>
<p>First thing is you must be sure that you had made a wise decision of moving your blogger blog to self hosted wordpress.You should too have confident that you can use wordpress in a wise way to develop and promote your blog.</p>
<p><strong>2. Buy web hosting space</strong></p>
<p>This is the most important thing and also the first thing to move your blogger blog to wordpress space.You must own your own web space to save the contents of your blog.So you must first get a web hosting space before you continue.</p>
<p><strong>3. Update nameservers of your domain name</strong></p>
<p>Nameservers performs the task of showing that your domain name is pointed to your wordpress blog.It takes around 12-48 hours to get your nameservers updated depending upon your domain name hosting company.You should enter the same addresses in your domain name nameservers as provided by your web hosting service.</p>
<p>To know whether your nameservers has been updated or not , take a frequent look of your blog in few gaps of time.If you blog address stops showing your old blogger blog then you can confirm that your domain name nameservers have been updated.</p>
<p><strong>4. Login to your webhosting Control Panel<br />
</strong></p>
<p>After you get your domain name&#8217;s nameservers updated login to your Webhosting control panel with the same data you signup with.To login enter <em><strong>http://yourdomainname.com/cpanel</strong></em> in your browser and signin with your Username and password.</p>
<p><strong>5. Install wordpress from Fantastico</strong></p>
<p>This is the most important step to be performed to get your wordpress account active.Take a look at the snapshots below on how to install wordpress from fantastico.</p>
<p><strong>a.</strong> Click Fantastico from your Cpanal dashboard.</p>
<p><strong><img class="alignright size-full wp-image-2340" style="margin-right:300px;" title="fantastico icon" src="http://www.bloganol.com/wp-content/uploads/2009/11/fantastico-icon.jpg" alt="fantastico icon" width="502" height="223" /><br />
</strong></p>
<p><strong>b.</strong> Click WordPress from the fantastico page.If you Cpanal already got WordPress button,you can directly proceed from there.</p>
<p><img class="alignright size-full wp-image-2343" style="margin-right:300px;" title="fantastico page" src="http://www.bloganol.com/wp-content/uploads/2009/11/fantastico-page.jpg" alt="fantastico page" width="500" height="345" /></p>
<p><strong>c.</strong> Now Click New installation from wordpress Page.</p>
<p><img class="alignright size-full wp-image-2346" style="margin-right:300px;" title="new installation fantastico" src="http://www.bloganol.com/wp-content/uploads/2009/11/new-installation-fantastico.jpg" alt="new installation fantastico" width="505" height="361" /></p>
<p><strong>d.</strong> Now in 4th step enter data in the installation form as suggested in the snapshot below and click Install WordPress.</p>
<p><img class="alignright size-full wp-image-2347" style="margin-right:300px;" title="install wordpress" src="http://www.bloganol.com/wp-content/uploads/2009/11/install-wordpress1.jpg" alt="install wordpress" width="503" height="576" /></p>
<p><strong>6.  Preview your blog</strong></p>
<p>After you install the wordpress for your blog now its your turn to look at your blog once.If your blog URL shows the new wordpress blog with just a single post &#8220;hello World&#8221; then you can confirm that your wordpress blog is fully setup and you can now move to next step.</p>
<p><strong>7. Login to your WP Blog</strong></p>
<p>After you&#8217;re done upto step 6 then now its your time to login into your wordpress blog.For that type  <em><strong>htttp://yourblogname.com/wp-login.php</strong></em> in your browser.You will be redirected to sign in page.From there sign in into your wordpress blog with the same username and password that you have entered in <strong>step 5 d</strong>.You will be redirected to your WP dashboard from there.</p>
<p><strong>8. Import your Blogger Blog</strong></p>
<p>This step will import the posts ,comments and categories of your blogger blog into your new WP blog.To import your blogger blog click <strong>Import</strong> under <strong>Tools </strong>tab.Click the Blogger Link from that page.The next thing is you need <strong>authorize</strong> the blog with your Blogger account.After you authorize you will be taken to Import Page.The page will list out all your blog hosted on that account.Now click <strong>import</strong> to that Blog which you want to import.The import will complete in some time depending upon your internet connection.</p>
<p><strong>9.Update permalinks to the the Blogger Style Permalinks</strong></p>
<p>At first the permalink of your posts seems different from your old blogger style permalinks.The default permalink will look like <em><strong>http://www.yourblogname.com/?p=123</strong></em>.So you need to update this permalinks like the default blogger permalinks <em><strong>http://www.yourblogname.com/2009/11/sample-post/Post-title.html</strong></em>.For this Click Permalinks from your Settings Tab.Now you will need to select different styles for your permalinks.To make your Permalinks same like the blogger , Check the custom structure filed and enter the following code in the custom structure field and Click save changes.</p>
<div class="codex"><code>/%year%/%monthnum%/%postname%.html</code></div>
<p><img class="alignright size-full wp-image-2356" style="margin-right:300px;" title="permalink" src="http://www.bloganol.com/wp-content/uploads/2009/11/permalink.jpg" alt="permalink A complete guide on how to move your blogger blog to self hosted wordpress" width="500" height="187" /></p>
<p>If you are doing well upto this step then you are done transferring your blogger blog to self hosted wordpress.But all the wordpress customization are not over here.You need to optimize your wordpress blog fro different search engines like Google.Yahoo,etc.<br />
If you got some problem during this process or need support after this then you can easily contact us or communicate with the cute comment form below.Have a good day Bloggers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bloganol.com/2009/11/complete-guide-move-blogger-blog-hosted-wordpress.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>5 Excellent free WordPress Themes</title>
		<link>http://www.bloganol.com/2009/10/5-excellent-free-wordpress-themes.html</link>
		<comments>http://www.bloganol.com/2009/10/5-excellent-free-wordpress-themes.html#comments</comments>
		<pubDate>Sat, 24 Oct 2009 08:28:21 +0000</pubDate>
		<dc:creator>Deineshd</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://bloganol.com/?p=2174</guid>
		<description><![CDATA[This might be the first wordpress related post published on bloganol So I cant deliver you the big wordpress topics and its also related to the excellent WordPress Themes for the wordpress blog users.Look at the Themes below. 1.  WP max wordpress Theme [ Demo &#124; Download] 2.  Lightbreaker WordPress Theme [ Demo &#124; Download] 3.   Arthemia WordPress Theme [ Demo &#124; Download] 4.  Itheme WordPress Theme [ Demo &#124; Download] 5.  Digital Statement WordPress [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="dropcap-first">This might be the first wordpress related post published on bloganol So I cant deliver you the big wordpress topics and its also related to the excellent WordPress Themes for the wordpress blog users.Look at the Themes below.</p>
<p><strong>1.  WP max wordpress Theme</strong> [<a title="View demo of WP max wordpress theme" href="http://www.themespreview.com/downloads/preview.php?theme=56" target="_blank"> Demo</a> | <a title="Download WP max wordpress theme" href="http://www.themespreview.com/wp-max-wordpress-theme/">Download</a>]</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-2180" style="margin-right:1000px;" title="max-magazine-560x339" src="http://bloganol.com/wp-content/uploads/2009/10/max-magazine-560x339.jpg" alt="max magazine 560x339 5 Excellent free Wordpress Themes" width="400" height="241" /></p>
<p style="text-align: center;">
<p style="text-align: left;">
<p style="text-align: left;"><strong>2.  Lightbreaker WordPress Theme</strong> [<a title="View demo of Lightbreaker wordpress theme" href="http://www.eblogtemplates.com/demo/index.php?wptheme=LightBreaker" target="_blank"> Demo</a> | <a title="Download Lightbreaker wordpress theme" href="http://www.eblogtemplates.com/lightbreaker-wordpress-theme/">Download</a>]</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-2186" style="margin-right:1000px;" title="lightbreaker-wordpress" src="http://bloganol.com/wp-content/uploads/2009/10/lightbreaker-wordpress.jpg" alt="lightbreaker wordpress 5 Excellent free Wordpress Themes" width="402" height="301" /></p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>3.   Arthemia WordPress Theme</strong> [<a href="http://michaelhutagalung.com/arthemia/" target="_blank"> Demo</a> | <a href="http://www.themelab.com/2008/08/26/arthemia-wordpress-theme-review/">Download</a>]</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-2187" style="margin-right:1000px;" title="arthemia" src="http://bloganol.com/wp-content/uploads/2009/10/arthemia.jpg" alt="arthemia 5 Excellent free Wordpress Themes" width="400" height="325" /></p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>4.  Itheme WordPress Theme</strong> [<a href="http://www.ndesign-studio.com/demo/wordpress/index.php?wptheme=iTheme" target="_blank"> Demo</a> | <a href="http://www.ndesign-studio.com/resources/wp-themes/itheme/">Download</a>]</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-2194" style="margin-right:1000px;" title="itheme-screen" src="http://bloganol.com/wp-content/uploads/2009/10/itheme-screen.jpg" alt="itheme screen 5 Excellent free Wordpress Themes" width="400" height="300" /></p>
<p style="text-align: left;"><strong>5.  Digital Statement WordPress Theme </strong>[<a href="http://wpthemes.blogohblog.net/index.php?wptheme=Digital+Statement" target="_blank"> Demo</a> | <a href="http://www.blogohblog.com/wordpress-theme-digital-statement/">Download</a>]</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-2196" style="margin-right:1000px;" title="digital-statement-500x463" src="http://bloganol.com/wp-content/uploads/2009/10/digital-statement-500x463.jpg" alt="digital statement 500x463 5 Excellent free Wordpress Themes" width="401" height="371" /></p>
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.bloganol.com/2009/10/5-excellent-free-wordpress-themes.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
