<?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 &#187; Wordpress</title>
	<atom:link href="http://www.bhupendra.info/blog/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bhupendra.info/blog</link>
	<description>Re-Writing the Web</description>
	<lastBuildDate>Sat, 09 Jul 2011 07:17:39 +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 Pagination Not Working: Solution</title>
		<link>http://www.bhupendra.info/blog/wordpress-pagination-not-working-solution</link>
		<comments>http://www.bhupendra.info/blog/wordpress-pagination-not-working-solution#comments</comments>
		<pubDate>Sat, 09 Jul 2011 07:15:24 +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=237</guid>
		<description><![CDATA[If you use query_post function on a theme&#8217;s homepage, you might land up messing up with the pagination function of WordPress. Here is the quick fix to wordpress pagination (Next Previous Posts) function: 1. Add up the following line of &#8230; <a href="http://www.bhupendra.info/blog/wordpress-pagination-not-working-solution">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you use query_post function on a theme&#8217;s homepage, you might land up messing up with the pagination function of WordPress.</p>
<p>Here is the quick fix to wordpress pagination (Next Previous Posts) function:</p>
<p>1. Add up the following line of code just BEFORE the query_post() function:</p>
<pre class="brush:php">$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;</pre>
<p>2. Add the variable $paged to your query_post function (notice the extra variable at the end of the query post function):</p>
<pre class="brush:php">query_posts('orderby=date&#038;order=DESC&#038;posts_per_page=5&#038;cat=blog&#038;paged='.$paged);</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=237&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/wordpress-pagination-not-working-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Custom Post Type in WordPress</title>
		<link>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress</link>
		<comments>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress#comments</comments>
		<pubDate>Thu, 07 Jul 2011 13:51:38 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=232</guid>
		<description><![CDATA[Creating a custom post types in WordPress is very simple. All you need to do is register the custom post type. Copy the function below to your theme&#8217;s function.php file The function below adds a custom post type &#8220;Ideas&#8221; with &#8230; <a href="http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating a custom post types in WordPress is very simple. All you need to do is register the custom post type.</p>
<p>Copy the function below to your theme&#8217;s function.php file</p>
<p>The function below adds a custom post type &#8220;Ideas&#8221; with the same columns. </p>
<pre class="brush:php">
register_post_type('ideas', array(
	'label' => __('Ideas'),
	'singular_label' => __('Ideas'),
	'public' => true,
	'show_ui' => true,
	'capability_type' => 'post',
	'hierarchical' => false,
	'rewrite' => false,
	'query_var' => false,
	'supports' => array('title', 'editor', 'author')
));
</pre>
<p>If you want to list the posts posted under the custom post type, you can use the query_posts function:</p>
<pre class="brush:php">
query_posts('post_type=ideas')
</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=232&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FaceBook &#8211; Add custom thumbnail and title when someone likes your Website</title>
		<link>http://www.bhupendra.info/blog/facebook-share-custom-thumbnail-title</link>
		<comments>http://www.bhupendra.info/blog/facebook-share-custom-thumbnail-title#comments</comments>
		<pubDate>Fri, 24 Jun 2011 08:04:03 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=220</guid>
		<description><![CDATA[Facebook Link button is now floating on almost every website. By default, when a user clicks on Facebook &#8220;Like&#8221; button on any of your webpage, it will post the image thumbnail, title and description from the same page. Just in &#8230; <a href="http://www.bhupendra.info/blog/facebook-share-custom-thumbnail-title">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Facebook Link button is now floating on almost every website.</p>
<p>By default, when a user clicks on Facebook &#8220;Like&#8221; button on any of your webpage, it will post the image thumbnail, title and description from the same page.</p>
<p>Just in case you want to provide a custom image Thumbnail and/or custom Title, you can do it quickly by adding the following meta tags in your page header.</p>
<p><code></p>
<pre class="brush:html">
<meta property="og:image" content="http://yoursite.com/image.gif"/>
<meta property="og:title" content="Your Website Title"/>
</pre>
<p></code></p>
<p>Click on Facebook like button below to see how it works <img src='http://www.bhupendra.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=220&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/facebook-share-custom-thumbnail-title/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 &#8230; <a href="http://www.bhupendra.info/blog/running-wordpress-queries-in-non-wordpress-pages">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>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 &#8230; <a href="http://www.bhupendra.info/blog/wordpress-asking-for-ftp-usernamepassword-while-trying-to-install-plugin-from-admin-panel">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 &#8230; <a href="http://www.bhupendra.info/blog/custom-user-registration-plugins-for-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>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 &#8230; <a href="http://www.bhupendra.info/blog/thumbnail-for-excerpts-hack-for-wordpress-2-8">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>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 &#8230; <a href="http://www.bhupendra.info/blog/yamidoo-theme-featured-content-image-slider-fix">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 &#8230; <a href="http://www.bhupendra.info/blog/custom-read-more-link-for-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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 &#8230; <a href="http://www.bhupendra.info/blog/best-wordpress-plugins">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>

