<?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>Bhupendra Kunwar Blog &#124; Internet Marketing Web Dev Professional</title>
	<atom:link href="http://www.bhupendra.info/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bhupendra.info/blog</link>
	<description>Re-Writing the Web</description>
	<lastBuildDate>Sat, 17 Jul 2010 06:26:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Running WordPress Queries in Non-WordPress Pages</title>
		<link>http://www.bhupendra.info/blog/running-wordpress-queries-in-non-wordpress-pages</link>
		<comments>http://www.bhupendra.info/blog/running-wordpress-queries-in-non-wordpress-pages#comments</comments>
		<pubDate>Sat, 17 Jul 2010 06:22:57 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=176</guid>
		<description><![CDATA[At times you might want to run the WordPress queries or wordpress functions in the page located outside the wordpress templates. Thanks to wordpress for providing a very simple solution to this. You just need to include the file called &#8220;wp-load.php&#8221; in the non-wordpress file before calling any WP functions and then you can run [...]]]></description>
			<content:encoded><![CDATA[<p>At times you might want to run the WordPress queries or wordpress functions in the page located outside the wordpress templates.</p>
<p>Thanks to wordpress for providing a very simple solution to this.</p>
<p>You just need to <strong>include the file called &#8220;wp-load.php&#8221;</strong> in the non-wordpress file before calling any WP functions and then you can run wordpress queries or call any wordpress function in that page.</p>
<p><strong>wp-load.php is located in the root folder of your wordpress installation.</strong></p>
<p>eg. if you have installed wordpress in your domains root folder, wp-load.php will be there in your public_html or httpdocs folder as applicable.<br />
if you have installed wordpress in a folder say wp in your domain root, the wp-load.php shall be located in public_html/wp/ folder.</p>
<p>Include this file in your non-wordpress file using a require statement at the very beginning of the file.</p>
<pre class="brush:php">require('../wp-load.php');</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=176&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/running-wordpress-queries-in-non-wordpress-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canonical URL solution &#8211; redirect non-www to www and index.php to your homepage</title>
		<link>http://www.bhupendra.info/blog/redirect-index-html-and-index-php-to-the-homepage</link>
		<comments>http://www.bhupendra.info/blog/redirect-index-html-and-index-php-to-the-homepage#comments</comments>
		<pubDate>Thu, 08 Jul 2010 06:18:14 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[URL Rewriting]]></category>
		<category><![CDATA[Webmaster Issues]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=168</guid>
		<description><![CDATA[Canonical URL issue has always been a headache to the Webmasters and SEOs. But thanks to apache&#8217;s mod_rewrite which provide nice escapes for this problem 1. Rewrite all your urls WITHOUT www to WITH www Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^euttaranchal.com RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L] 2. Redirect all your index.php and index.html files to [...]]]></description>
			<content:encoded><![CDATA[<p>Canonical URL issue has always been a headache to the Webmasters and SEOs. But thanks to apache&#8217;s mod_rewrite which provide nice escapes for this problem</p>
<p><strong>1. Rewrite all your urls WITHOUT www to WITH www</strong></p>
<pre class="brush:ps">Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^euttaranchal.com
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
</pre>
<p><strong>2. Redirect all your index.php and index.html files to homepage or directory root</strong></p>
<pre class="brush:ps">Options +FollowSymLinks
RewriteEngine on

#rewrite your index.html to homepage
#eg:  http://www.yourdomain.com/index.html to http://www.yourdomain.com/

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://www.yourdomain.com/$1 [R=301,L]

#rewrite your index.php to homepage
#eg: http://www.yourdomain.com/index.php to http://www.yourdomain.com/
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.yourdomain.com/$1 [R=301,L]
</pre>
<p>** you can do this for default.html or other pages too depending on your default page name.</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=168&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/redirect-index-html-and-index-php-to-the-homepage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress asking for FTP username/password while trying to install plugin from admin panel</title>
		<link>http://www.bhupendra.info/blog/wordpress-asking-for-ftp-usernamepassword-while-trying-to-install-plugin-from-admin-panel</link>
		<comments>http://www.bhupendra.info/blog/wordpress-asking-for-ftp-usernamepassword-while-trying-to-install-plugin-from-admin-panel#comments</comments>
		<pubDate>Mon, 08 Mar 2010 14:13:29 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=139</guid>
		<description><![CDATA[This is annoying if WordPress asks for FTP username/password everytime you try to install or update plugin from admin panel. Here is the quick hack to this. 1. Open the wp-config.php file (this will be located in the root of your wordpress installation) 2. Add the following line of code just after define(&#8216;NONCE_KEY&#8217;, &#8216;put your [...]]]></description>
			<content:encoded><![CDATA[<p>This is annoying if WordPress asks for FTP username/password everytime you try to install or update plugin from admin panel.</p>
<p>Here is the quick hack to this.</p>
<p>1. Open the wp-config.php file (this will be located in the root of your wordpress installation)</p>
<p>2. Add the following line of code just after define(&#8216;NONCE_KEY&#8217;, &#8216;put your unique phrase here&#8217;);</p>
<pre class="brush:php">/* FTP login settings */
define('FTP_HOST', 'localhost');
define('FTP_USER', 'yourftpusername');
define('FTP_PASS', 'yourftppassword');</pre>
<p><strong>Note: </strong>Be sure to replace yourftpusername to your website&#8217;s FTP user name and yourftppassword to your website&#8217;s FTP password.</p>
<p>3. Upload the updated file. It works!</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=139&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/wordpress-asking-for-ftp-usernamepassword-while-trying-to-install-plugin-from-admin-panel/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom User Registration Plugins for WordPress</title>
		<link>http://www.bhupendra.info/blog/custom-user-registration-plugins-for-wordpress</link>
		<comments>http://www.bhupendra.info/blog/custom-user-registration-plugins-for-wordpress#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:35:50 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=136</guid>
		<description><![CDATA[I have been trying hard to find an easy way out to add custom registration field to the WordPress default registration form. I recommend the following wordpress plugin to customize, add custom fields, manage user registration, moderate user registration and edit the default email sent to the new registered users. 1. Cimy User Extra Fields [...]]]></description>
			<content:encoded><![CDATA[<p>I have been trying hard to find an easy way out to add custom registration field to the WordPress default registration form.</p>
<p>I recommend the following wordpress plugin to customize, add custom fields, manage user registration, moderate user registration and edit the default email sent to the new registered users.</p>
<p><strong>1. Cimy User Extra Fields</strong><br />
This plugin gives you the power to add custom fields to your wordpress registration form. You also get the choice to add different data types like text box, select box, radio button, text area etc with quite a few validation options.</p>
<p>Cimy User Extra Fields also unleashes the hidden registration fields that come with wordpress default registration form.</p>
<p><a href="http://wordpress.org/extend/plugins/cimy-user-extra-fields/" target="_blank"><strong>Download</strong></a></p>
<p><strong>2. Approve New Users<br />
</strong></p>
<p>You can moderate New User Registration with this plugin. It adds another option &#8220;Approve New Users&#8221; under &#8220;Users&#8221; settings menu.</p>
<p><strong><a href="http://wordpress.org/extend/plugins/new-user-approve/" target="_blank">Download</a></strong></p>
<p><strong>3. New User Email Setup<br />
</strong></p>
<p>New User Email Setup plugin lets you customize the default email sent to the new users upon registration. You can customize the email text, sender name, sender email and subject too. What&#8217;s more, you can even send HTML email!</p>
<p><a href="http://wordpress.org/extend/plugins/new-user-email-set-up/" target="_blank"><strong>Download</strong></a></p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=136&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/custom-user-registration-plugins-for-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Solutions: Add New Custom Field Not Working</title>
		<link>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working</link>
		<comments>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working#comments</comments>
		<pubDate>Fri, 06 Nov 2009 07:51:16 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=129</guid>
		<description><![CDATA[If you are having an issue adding a new custom fields in your wordpress blog, here is the possible solution. Problem: Add New Custom Field Doesn&#8217;t Work at all. When you click on &#8220;Add Custom Field&#8221; nothing happens! Solution: Refer to your Theme&#8217;s Function file (functions.php) located in your theme directory. Remove any blank lines [...]]]></description>
			<content:encoded><![CDATA[<p>If you are having an issue adding a new custom fields in your wordpress blog, here is the possible solution.</p>
<p><strong>Problem</strong>: Add New Custom Field Doesn&#8217;t Work at all. When you click on &#8220;Add Custom Field&#8221; nothing happens!</p>
<p><strong>Solution</strong>: Refer to your Theme&#8217;s Function file (functions.php) located in your theme directory. Remove any blank lines from the file functions.php</p>
<p>It works!</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=129&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thumbnail for Excerpts : Hack for WordPress 2.8+</title>
		<link>http://www.bhupendra.info/blog/thumbnail-for-excerpts-hack-for-wordpress-2-8</link>
		<comments>http://www.bhupendra.info/blog/thumbnail-for-excerpts-hack-for-wordpress-2-8#comments</comments>
		<pubDate>Wed, 28 Oct 2009 06:12:46 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=124</guid>
		<description><![CDATA[I was stucked with Thumbnail for Excerpt plugin behaving unexpectedly with WordPress 2.8.2 Thank you Cory for sharing the plugin hack to make it work. Bug: The Thumbnail for Excerpt plugin showing the same thumbnail image with all the posts (with WordPress 2.8.2+) Solution: Edit the plugin in plugin editor. Replace lines 28 &#38; 29 [...]]]></description>
			<content:encoded><![CDATA[<p>I was stucked with Thumbnail for Excerpt plugin behaving unexpectedly with WordPress 2.8.2</p>
<p>Thank you <a href="http://www.coryduncan.com/" target="_blank">Cory</a> for sharing the plugin hack to make it work.</p>
<p><strong>Bug</strong>: The Thumbnail for Excerpt plugin showing the same thumbnail image with all the posts (with WordPress 2.8.2+)</p>
<p><strong>Solution</strong>: Edit the plugin in plugin editor. Replace lines 28 &amp; 29 with this:</p>
<pre class="brush:php">
global $wp_query, $wpdb, $post;
$id = $post-&gt;ID;
</pre>
<p><strong>The actual lines of code look like this</strong></p>
<pre class="brush:php">
global $wp_query, $wpdb;
$id = $wp_query-&gt;post-&gt;ID;
</pre>
<p><strong>Replace these lines with </strong></p>
<pre class="brush:php">
global $wp_query, $wpdb, $post;
$id = $post-&gt;ID;
</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=124&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/thumbnail-for-excerpts-hack-for-wordpress-2-8/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Highlight the Background of Current Page in WordPress</title>
		<link>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress</link>
		<comments>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:17:11 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=117</guid>
		<description><![CDATA[I was stucked finding an easy solution to highlight the background of the current (active) page in wordpress. The solution is however too simple. Just add the following CSS code in your stylesheet (style.css) #menu_id li.current_page_item a{ background:#2E8DE6; } Note: Be sure to replace #menu_id with the id of your navigation bar. In this case, [...]]]></description>
			<content:encoded><![CDATA[<p>I was stucked finding an easy solution to highlight the background of the current (active) page in wordpress. The solution is however too simple. Just add the following CSS code in your stylesheet (style.css)</p>
<pre class="brush:css">#menu_id li.current_page_item a{
    background:#2E8DE6;
}
</pre>
<p>Note: Be sure to replace #menu_id with the id of your navigation bar. In this case, the list of my pages is contained in a div with id menu_id</p>
<p><img class="alignnone size-full wp-image-119" style="border:1px solid #000000;" title="highlight-active-page" src="http://www.bhupendra.info/blog/wp-content/uploads/2009/10/highlight-active-page.jpg" alt="highlight-active-page" width="534" height="172" /></p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=117&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yamidoo Theme Featured Content Image Slider Fix</title>
		<link>http://www.bhupendra.info/blog/yamidoo-theme-featured-content-image-slider-fix</link>
		<comments>http://www.bhupendra.info/blog/yamidoo-theme-featured-content-image-slider-fix#comments</comments>
		<pubDate>Fri, 26 Jun 2009 10:33:56 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[hacks]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=107</guid>
		<description><![CDATA[Yamidoo Magazine Theme is one of the popular wordpress theme to give your blog a professional and fresh look. However, one of the common problem encoutered by Yamidoo theme users is that the Featured Content Gallery doesn&#8217;t slide automatically. A simple tweak below can fix this bug and make the Featured Content Gallery on the [...]]]></description>
			<content:encoded><![CDATA[<p>Yamidoo Magazine Theme is one of the popular wordpress theme to give your blog a professional and fresh look. However, one of the common problem encoutered by Yamidoo theme users is that the Featured Content Gallery doesn&#8217;t slide automatically.</p>
<p><strong>A simple tweak below can fix this bug and make the Featured Content Gallery on the Yamidoo Theme sliding</strong></p>
<p>Open the Main Index File: /wp-content/themes/yamidoo/index.php<br />
(assuming that you have uploaded the theme under yamidoo folder)</p>
<p><strong>Search for these 2 lines (somewhere near line number 36 on index.php file):</strong></p>
<pre class="brush:html">
<!-- thumbs-feature -->

<!-- #headline --></pre>
<p><strong>Right BEFORE these two lines</strong>, add this line:</p>
<pre class="brush:html">
<a class="next" href="#"></a>
</pre>
<p>If you want to control the autoslider, in your header.php file, there is one such line:<br />
autorotateconfig: [1000, 0]</p>
<p>The first value (default: 1000) controls the speed (in miliseconds). 1000 = 1 second.<br />
The second value (default: 0) controls how many cycles the slider should have. If you leave it 0 &#8211; it will autoslide over and over again, an infinite amount of times.</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=107&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/yamidoo-theme-featured-content-image-slider-fix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Read More link for WordPress</title>
		<link>http://www.bhupendra.info/blog/custom-read-more-link-for-wordpress</link>
		<comments>http://www.bhupendra.info/blog/custom-read-more-link-for-wordpress#comments</comments>
		<pubDate>Mon, 30 Mar 2009 09:36:19 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wodrpress]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=99</guid>
		<description><![CDATA[The default &#8220;read more&#8221; link for the wordpress that comes with the_excerpt function shows [...] after every post listing WITHOUT a hyperlink to the post.  To make the_excerpt function more useful, you can add a custom read more link which will replace [...] It require a small tweak in wp_trim_excerpt function. Open your wordpress file [...]]]></description>
			<content:encoded><![CDATA[<p>The default &#8220;read more&#8221; link for the wordpress that comes with the_excerpt function shows [...] after every post listing WITHOUT a hyperlink to the post.  To make the_excerpt function more useful, you can add a custom read more link which will replace [...]</p>
<p>It require a small tweak in wp_trim_excerpt function.</p>
<p>Open your wordpress file /wp-includes/formatting.php</p>
<p>Go to line number 1482. The wp_trim_excerpt function would read like this</p>
<p><strong>BEFORE</strong></p>
<p><code>function wp_trim_excerpt($text) {<br />
if ( '' == $text ) {<br />
$text = get_the_content('');</code></p>
<p>$text = strip_shortcodes( $text );</p>
<p>$text = apply_filters(&#8216;the_content&#8217;, $text);<br />
$text = str_replace(&#8216;]]&gt;&#8217;, &#8216;]]&gt;&#8217;, $text);<br />
$text = strip_tags($text);<br />
$excerpt_length = apply_filters(&#8216;excerpt_length&#8217;, 55);<br />
$words = explode(&#8216; &#8216;, $text, $excerpt_length + 1);<br />
if (count($words) &gt; $excerpt_length) {<br />
array_pop($words);<br />
array_push($words, [...]);<br />
$text = implode(&#8216; &#8216;, $words);<br />
}<br />
}<br />
return $text;<br />
}</p>
<p><strong>AFTER (refer to the modified text in red)<br />
</strong></p>
<p>function wp_trim_excerpt($text) {<br />
if ( &#8221; == $text ) {<br />
$text = get_the_content(&#8221;);<br />
<span style="color: #ff0000;">$read_link=&#8217;&lt;a href=&#8221;&#8216;. get_permalink().&#8217;&#8221;&gt;&#8217;;<br />
$end_read_link=&#8221;&lt;/a&gt;&#8221;;</span><br />
$text = strip_shortcodes( $text );</p>
<p>$text = apply_filters(&#8216;the_content&#8217;, $text);<br />
$text = str_replace(&#8216;]]&gt;&#8217;, &#8216;]]&amp;gt;&#8217;, $text);<br />
$text = strip_tags($text);<br />
$excerpt_length = apply_filters(&#8216;excerpt_length&#8217;, 55);<br />
$words = explode(&#8216; &#8216;, $text, $excerpt_length + 1);<br />
if (count($words) &gt; $excerpt_length) {<br />
array_pop($words);<br />
<span style="color: #ff0000;">array_push($words, &#8216;&#8230;&#8217;.$read_link.&#8217;[read more]&#8216;.$end_read_link);</span><br />
$text = implode(&#8216; &#8216;, $words);<br />
}<br />
}<br />
return $text;<br />
}</p>
<p>Cheers&#8230;you are done!</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=99&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/custom-read-more-link-for-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WordPress Plugins</title>
		<link>http://www.bhupendra.info/blog/best-wordpress-plugins</link>
		<comments>http://www.bhupendra.info/blog/best-wordpress-plugins#comments</comments>
		<pubDate>Thu, 19 Mar 2009 08:11:01 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=94</guid>
		<description><![CDATA[WordPress itself is a wonderful script for the bloggers and webmasters. And the plugins make it more delicious. The list of great WordPress Plugins is countless but still I have tried to collect a list of &#8220;Some&#8221; of the BEST WordPress Plugins I have used so far 1. WP-TREE This Widget-enabled plugin is highly configurable [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress itself is a wonderful script for the bloggers and webmasters. And the plugins make it more delicious.</p>
<p>The list of great WordPress Plugins is countless but still I have tried to collect a list of &#8220;Some&#8221; of the BEST WordPress Plugins I have used so far</p>
<p><strong>1. WP-TREE</strong><br />
This Widget-enabled plugin is highly configurable and can show the Categories, Links, Pages in a Tree menu structure.</p>
<p>Download Link: <a href="http://wordpress.org/extend/plugins/wp-dtree-30/" target="_blank">http://wordpress.org/extend/plugins/wp-dtree-30/</a></p>
<p><strong>2. Featured Content Gallery<br />
</strong>This plugin can fetch images from your specified post categories and display them nicely as an image gallery with rollover text.<br />
Demo: <a href="http://www.featuredcontentgallery.com" target="_blank">http://www.featuredcontentgallery.com</a><br />
Download Link: <a href="http://wordpress.org/extend/plugins/featured-content-gallery/" target="_blank">http://wordpress.org/extend/plugins/featured-content-gallery/</p>
<p></a></p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=94&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/best-wordpress-plugins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
