<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Nilesh Shiragave PHP | Wordpress Expert</title>
	
	<link>http://www.snilesh.com</link>
	<description>PHP,Wordpress,Jquery Expert</description>
	<lastBuildDate>Thu, 16 May 2013 08:41:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/snilesh" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="snilesh" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">snilesh</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Magento : Return Store Variables (name,phone number,email)</title>
		<link>http://www.snilesh.com/snippets/magento-return-store-variables-namephone-numberemail/</link>
		<comments>http://www.snilesh.com/snippets/magento-return-store-variables-namephone-numberemail/#comments</comments>
		<pubDate>Thu, 16 May 2013 08:39:43 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[magento tutorials]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1958</guid>
		<description><![CDATA[We can get store variables like name,phone number, email using Mage helper. Get Magento Store Name To get store name use following code. Get Magento Store Phone number To get store phone number use following code. Get Magento Store Address To get store address use following code. Get Magento Store Email Address To get store [...]]]></description>
				<content:encoded><![CDATA[<p>We can get store variables like name,phone number, email using Mage helper. </p>
<h3>Get Magento Store Name</h3>
<p>To get store name use following code.</p>
<pre class="brush: php; title: ; notranslate">
echo Mage::getStoreConfig('general/store_information/name');
</pre>
<h3>Get Magento Store Phone number</h3>
<p>To get store phone number use following code.</p>
<pre class="brush: php; title: ; notranslate">
echo Mage::getStoreConfig('general/store_information/phone');
</pre>
<h3>Get Magento Store Address</h3>
<p>To get store address use following code.</p>
<pre class="brush: php; title: ; notranslate">
echo Mage::getStoreConfig('general/store_information/address');
</pre>
<h3>Get Magento Store Email Address</h3>
<p>To get store email address use following code.</p>
<pre class="brush: php; title: ; notranslate">
echo Mage::getStoreConfig('trans_email/ident_general/email');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/snippets/magento-return-store-variables-namephone-numberemail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Delete All Products from database using mysql Query</title>
		<link>http://www.snilesh.com/snippets/magento-delete-all-products-from-database-using-mysql-query/</link>
		<comments>http://www.snilesh.com/snippets/magento-delete-all-products-from-database-using-mysql-query/#comments</comments>
		<pubDate>Thu, 16 May 2013 08:26:25 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[magento tutorials]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1953</guid>
		<description><![CDATA[To delete all products from your magento store using phpMyadmin. Use following queries to delete all products. Before doing this make sure to backup your existing database. So if anything goes wrong you can import your old database.]]></description>
				<content:encoded><![CDATA[<p>To delete all products from your magento store using phpMyadmin. Use following queries to delete all products. Before doing this make sure to backup your existing database. So if anything goes wrong you can import your old database.</p>
<pre class="brush: php; title: ; notranslate">
TRUNCATE TABLE 'catalog_product_bundle_option';
TRUNCATE TABLE 'catalog_product_bundle_option_value';
TRUNCATE TABLE 'catalog_product_bundle_selection';
TRUNCATE TABLE 'catalog_product_entity_datetime';
TRUNCATE TABLE 'catalog_product_entity_decimal';
TRUNCATE TABLE 'catalog_product_entity_gallery';
TRUNCATE TABLE 'catalog_product_entity_int';
TRUNCATE TABLE 'catalog_product_entity_media_gallery';
TRUNCATE TABLE 'catalog_product_entity_media_gallery_value';
TRUNCATE TABLE 'catalog_product_entity_text';
TRUNCATE TABLE 'catalog_product_entity_tier_price';
TRUNCATE TABLE 'catalog_product_entity_varchar';
TRUNCATE TABLE 'catalog_product_link';
TRUNCATE TABLE 'catalog_product_link_attribute_decimal';
TRUNCATE TABLE 'catalog_product_link_attribute_int';
TRUNCATE TABLE 'catalog_product_link_attribute_varchar';
TRUNCATE TABLE 'catalog_product_option';    
TRUNCATE TABLE 'catalog_product_option_price';
TRUNCATE TABLE 'catalog_product_option_title';
TRUNCATE TABLE 'catalog_product_option_type_price';
TRUNCATE TABLE 'catalog_product_option_type_title';
TRUNCATE TABLE 'catalog_product_option_type_value';
TRUNCATE TABLE 'catalog_product_super_attribute';
TRUNCATE TABLE 'catalog_product_super_attribute_label';
TRUNCATE TABLE 'catalog_product_super_attribute_pricing';
TRUNCATE TABLE 'catalog_product_super_link';
TRUNCATE TABLE 'catalog_product_enabled_index';
TRUNCATE TABLE 'catalog_product_website';
TRUNCATE TABLE 'catalog_product_entity';
TRUNCATE TABLE 'cataloginventory_stock_item';
TRUNCATE TABLE 'cataloginventory_stock_status';
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/snippets/magento-delete-all-products-from-database-using-mysql-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento get number of cart items</title>
		<link>http://www.snilesh.com/magento-tutorials/magento-get-number-of-cart-items/</link>
		<comments>http://www.snilesh.com/magento-tutorials/magento-get-number-of-cart-items/#comments</comments>
		<pubDate>Thu, 16 May 2013 05:14:04 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[magento tutorials]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1951</guid>
		<description><![CDATA[If you want to show total number of items present in your shopping cart basket then following code snippet is useful. Using Mage helper you can retrieve that information by calling Helper file checkout/cart. To show count use following code.]]></description>
				<content:encoded><![CDATA[<p>If you want to show total number of items present in your shopping cart basket then following code snippet is useful.</p>
<p>Using Mage helper you can retrieve that information by calling Helper file checkout/cart.</p>
<p>To show count use following code.</p>
<pre class="brush: php; title: ; notranslate">
echo Mage::helper('checkout/cart')-&gt;getCart()-&gt;getItemsCount();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/magento-tutorials/magento-get-number-of-cart-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential wordpress plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/essential-wordpress-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/essential-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 14:20:31 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1921</guid>
		<description><![CDATA[WordPress becoming more popular not just because of its features and it is free but because wordpress community is very active. WordPress community have huge wordpress plugin directory where new plugins get added regularly. If you run a wordpress website then you have already added some wordpress plugins to your wordpress website. Its more important [...]]]></description>
				<content:encoded><![CDATA[<p>WordPress becoming more popular  not just because of its features and it is free but because wordpress community is very active. WordPress community have huge wordpress plugin directory where new plugins get added regularly.  If you run a wordpress website then you have already added some wordpress plugins to your wordpress website. Its more important to figure out which are <strong>essential wordpress plugins</strong> required for a wordpress website. So in this post we will list some of the <strong>best wordpress plugins</strong> for different section like seo,social sharing,contact form.</p>
<p><img src="http://www.snilesh.com/wp-content/uploads/2013/02/essential-wordpress-plugins1.jpg" alt="essential wordpress plugins" width="550" height="250" class="aligncenter size-full wp-image-1927" /></p>
<h2>What is WordPress plugin?</h2>
<p>Plugins are tools which are used to extend the functionality of WordPress. Plugins can extend WordPress to do almost anything you can imagine.</p>
<h2>Essential WordPress plugins for SEO</h2>
<h3>1] <a href="http://wordpress.org/extend/plugins/wordpress-seo/" title="Wordpress Seo By Yoast" rel="nofollow" target="_blank">WordPress SEO by Yoast</a></h3>
<p>WordPress SEO is the most complete and advanced WordPress SEO plugin that exists today. It incorporates everything from a snippet preview and page analysis functionality that helps you optimize your pages content, images titles, meta descriptions and more to XML sitemaps. This plugin helps you to optimize your page content, image titles, meta descriptions, comes with tons of other features like Robots Meta configuration, breadcrumbs, permalink cleanup, canonical link element support, and optimized post titles.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" title="All In one seo pack" rel="nofollow" target="_blank">All in One SEO Pack</a></h3>
<p>Another free wordpress seo plugins which can be used to Optimizes your WordPress blog for Search Engines (Search Engine Optimization).<br />
Comes with features to support google analytics,custom post types, Advanced Canonical URLs, Built-in API so other plugins/themes can access and extend functionality.</p>
<h3>3] <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" title="Google XML sitemaps" rel="nofollow" target="_blank">Google XML Sitemaps</a></h3>
<p>Google XML SItemaps plugin generates XML sitemaps for your WordPress website, so that it becomes easy for search engine crawlers like Google and Bing, to index your site better. It notifies all the major search engines when you create new content, helping your site be more thoroughly indexed.</p>
<h3>4] <a href="http://wordpress.org/extend/plugins/seo-image/" title="SEO friendly Images" rel="nofollow" target="_blank">SEO friendly Images</a></h3>
<p>SEO friendly Images automatically adds alt and title attributes to your images. If your images inside post or page content don’t have alt or title attribute then this plugins adds them according to your plugins settings so images inside your content becomes seo optimized.</p>
<h3>5] <a href="http://wordpress.org/extend/plugins/broken-link-checker/" title="Broken Link Checker" rel="nofollow" target="_blank">Broken Link Checker</a></h3>
<p>This plugin is very helpful to find all the broken links on your website. This plugin Monitors links in your posts, pages, comments, the blogroll, and custom fields (optional). Detects links that don&#8217;t work, missing images and redirects. Notifies you either via the Dashboard or by email.</p>
<h2>Essential Anti Spam and Security WordPress plugins.</h2>
<h3>1] <a href="http://akismet.com/" title="Akismet" rel="nofollow" target="_blank">Akismet</a></h3>
<p>Akismet is the best wordpress anti  spam  plugin to protect your website from web spam. Akismet plugin filters comments and trackback spam. It runs on autopilot and provides 24-hour protection. Akismet is the best automated spam killer that actually gets better as it learns.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/" title="Si Captcha WordPress Plugin" rel="nofollow" target="_blank">SI CAPTCHA Anti-Spam</a></h3>
<p>SI CAPTCHA Anti-Spam plugin prevents spam from automated bots by adding a CAPTCHA in comment, registration, login and lost password forms. So your websites comment,login and registration forms becomes more secure from spams.</p>
<h3>3] <a href="http://wordpress.org/extend/plugins/wp-recaptcha/" title="Wp Recaptcha" rel="nofollow" target="_blank">WP-ReCaptcha</a></h3>
<p>reCAPTCHA is popular and widely accepted CAPTCHA systems on many websites. WP-reCaptcha plugin integrates reCAPTCHA anti-spam methods in WordPress as comment, registration forms and email protection.</p>
<h3>4] <a href="http://wordpress.org/extend/plugins/login-lockdown/" title="Login Lockdown" rel="nofollow" target="_blank">Login LockDown</a></h3>
<p>Limits the number of login attempts from a given IP range within a certain time period.</p>
<h3>5] <a href="http://wordpress.org/extend/plugins/better-wp-security/" title="Better WP Security" rel="nofollow" target="_blank">Better WP Security</a></h3>
<p>The easiest, most effective way to secure WordPress. Improve the security of any WordPress site in seconds.</p>
<h3>6]<a href="http://wordpress.org/extend/plugins/revision-control/" title="Revison Control" rel="nofollow" target="_blank">Revision Control</a></h3>
<p>Revision Control allows finer control over the Post Revision system included with WordPress</p>
<h2>Essential WordPress Comments and Poll plugins</h2>
<h3>1] <a href="http://wordpress.org/extend/plugins/commentluv/" title="Comment Luv" rel="nofollow" target="_blank">CommentLuv (Free/Premium)</a></h3>
<p>Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/facebook-comments-for-wordpress/" title="Facebook Comments for wordpress" rel="nofollow" target="_blank">Facebook Comments For WordPress</a></h3>
<p>This plugin integrates the Facebook commenting system (new, old or both) right into your website. If a reader is logged into Facebook while viewing any comment-enabled page or post, they&#8217;ll be able to leave a comment using their Facebook profile.</p>
<h3>3] <a href="http://wordpress.org/extend/plugins/disqus-comment-system/" title="Disqus" rel="nofollow" target="_blank">Disqus</a></h3>
<p>Disqus makes commenting easier and more interactive, while connecting websites and commenters across a thriving discussion community.<br />
The Disqus for WordPress plugin seamlessly integrates using the Disqus API and by syncing with WordPress comments.</p>
<h3>4] <a href="http://wordpress.org/extend/plugins/subscribe-to-comments/" title="Subscribe To Comments" rel="nofollow" target="_blank">Subscribe To Comments</a></h3>
<p>Subscribe to Comments is a robust plugin that enables commenters to sign up for e-mail notification of subsequent entries. The plugin includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts, block all notifications, or even change their notification e-mail address!</p>
<h3>5] <a href="http://wordpress.org/extend/plugins/wp-polls/" title="Wp Polls" rel="nofollow" target="_blank">WP-Polls</a></h3>
<p>Adds an AJAX poll system to your WordPress blog. You can also easily add a poll into your WordPress&#8217;s blog post/page.</p>
<h2>Essential WordPress Social Bookmarking Plugins</h2>
<h3>1] <a href="http://wordpress.org/extend/plugins/addthis/" title="Add This" rel="nofollow" rel="nofollow" target="_blank">AddThis</a></h3>
<p>The AddThis Social Bookmarking Widget allows any visitor to bookmark and share your site easily with over 330 popular services. Get more traffic back to your site by installing the AddThis WordPress plugin.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/share-this/" title="Share This" rel="nofollow" rel="nofollow" target="_blank">ShareThis: Share Buttons and Sharing Analytics</a></h3>
<p>Quick &#038; easy sharing service that allows your users to share content &#8211; features Open Graph Sharing, Hovering Bar and CopyNShare!</p>
<h3>3] <a href="http://wordpress.org/extend/plugins/sociable/" title="Sociable" rel="nofollow" rel="nofollow" target="_blank">Sociable</a></h3>
<p>Sociable plugin adds a bar of icons of different social networking and bookmarking sites that you can choose for your articles. Using sociable plugin visitors of your website can easily share posts from your website on their social bookmarking accounts.</p>
<h2>Stats and Tracking Plugins</h2>
<h3>1] Jetpack</h3>
<p>Jetpack is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/" title="Google Analytics For WordPress" rel="nofollow" target="_blank">Google Analytics for WordPress</a></h3>
<p>Google Analytics for WordPress is the most complete Google Analytics plugin for WordPress. Of course, you could just copy the tracking code into your theme and be done with it, but then you’d miss a whole lot of features that this plugin has to offer you. </p>
<h2>Other Most Needed WordPress plugins</h2>
<h3>1] <a href="http://wordpress.org/extend/plugins/contact-form-7/" title="Contact Form 7" rel="nofollow" target="_blank">Contact Form 7</a></h3>
<p>Best contact form plugin for your wordpress website. Using contact form 7 you can add contact form on your websites. Comes with option to add,edit,delete input elements from your form.</p>
<h3>2] <a href="http://wordpress.org/extend/plugins/wordpress-popup/" title="Wordpress PopUp Plugin" rel="nofollow" target="_blank">WordPress PopUp</a></h3>
<p>Good plugin to add popup ads or banners inside popup on your website. Comes with option to restrict popup from any particular page or posts. </p>
<h3>3] <a href="http://wordpress.org/extend/plugins/nrelate-flyout/" title="Nrelate WordPress plugins" rel="nofollow" target="_blank">Nrelate</a></h3>
<p>Display related content from your site or blogroll, in a cool flyout box&#8230; similarly to NYTimes.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/essential-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100 Most downloaded wordpress plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/100-most-downloaded-wordpress-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/100-most-downloaded-wordpress-plugins/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 04:45:07 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1899</guid>
		<description><![CDATA[WordPress becoming more popular not just only as a blogging software but as a CMS. Lots of users are using wordpress as A content management system where you can easily manage your website content from admin section without any technical skills. This post contains list of 100 most downloaded wordpress plugins. In this post i [...]]]></description>
				<content:encoded><![CDATA[<p>WordPress becoming  more popular not just only as a blogging software but as a CMS. Lots of users are using wordpress as A content management system where you can easily manage your website content from admin section without any technical skills. This post contains list of <strong>100 most downloaded wordpress plugins</strong>.</p>
<p><img src="http://www.snilesh.com/wp-content/uploads/2013/02/most-downloaded-wordpress-plugins.jpg" alt="most downloaded wordpress plugins" width="600" height="342" class="aligncenter size-full wp-image-1913" /></p>
<p>In this post i want to showcase most downloaded wordpress plugins from wordpress repository this doesn&#8217;t mean  you have to install all these plugins but you can check them out. </p>
<p><strong>List updated on 13 February 2013</strong></p>
<style type="text/css">
table.plugin_excel {
	border-style:ridge;
	border-width:1;
	border-collapse:collapse;
	font-family:sans-serif;
	font-size:12px;
}
table.plugin_excel thead th, table.plugin_excel tbody th {
	background:#666;
	border-style:ridge;
	border-width:1;
	text-align: center;
	color:#fff;
	font-weight:bold;
	vertical-align:bottom;
	padding:4px 15px;
}
table.plugin_excel tbody th {
	text-align:center;
	width:20px;
}
table.plugin_excel tbody td {
	vertical-align:bottom;
}
table.plugin_excel tbody td {
    padding: 3px 10px;
	border: 1px solid #EEEEEE;
}
</style>
<p><body></p>
<table class="plugin_excel" cellspacing=0>
<thead>
<tr>
<th>&nbsp;</th>
<th><strong>Plugin Name</strong></th>
<th><strong>Total Downloads</strong></th>
<tbody>
<tr>
<th>1</th>
<td style=""><a href="http://wordpress.org/extend/plugins/akismet/" title="Akismet" target="_blank" rel="nofollow">Akismet</a></td>
<td style="text-align:right;"><strong>13,728,261</strong></td>
</tr>
<tr>
<th>2</th>
<td style=""><a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" title="All in One SEO Pack" target="_blank" rel="nofollow">All in One SEO Pack</a></td>
<td style="text-align:right;"><strong>13,533,331</strong></td>
</tr>
<tr>
<th>3</th>
<td style=""><a href="http://wordpress.org/extend/plugins/contact-form-7/" title="Contact Form 7" target="_blank" rel="nofollow">Contact Form 7</a></td>
<td style="text-align:right;"><strong>9,781,520</strong></td>
</tr>
<tr>
<th>4</th>
<td style=""><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" title="Google XML Sitemaps" target="_blank" rel="nofollow">Google XML Sitemaps</a></td>
<td style="text-align:right;"><strong>9,620,528</strong></td>
</tr>
<tr>
<th>5</th>
<td style=""><a href="http://wordpress.org/extend/plugins/nextgen-gallery/" title="NextGEN Gallery" target="_blank" rel="nofollow">NextGEN Gallery</a></td>
<td style="text-align:right;"><strong>6,686,140</strong></td>
</tr>
<tr>
<th>6</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-super-cache/" title="WP Super Cache" target="_blank" rel="nofollow">WP Super Cache</a></td>
<td style="text-align:right;"><strong>4,085,110</strong></td>
</tr>
<tr>
<th>7</th>
<td style=""><a href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/" title="Google Analytics for WordPress" target="_blank" rel="nofollow">Google Analytics for WordPress</a></td>
<td style="text-align:right;"><strong>4,054,445</strong></td>
</tr>
<tr>
<th>8</th>
<td style=""><a href="http://wordpress.org/extend/plugins/jetpack/" title="Jetpack by WordPress.com" target="_blank" rel="nofollow">Jetpack by WordPress.com</a></td>
<td style="text-align:right;"><strong>4,050,881</strong></td>
</tr>
<tr>
<th>9</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wptouch/" title="WPtouch" target="_blank" rel="nofollow">WPtouch</a></td>
<td style="text-align:right;"><strong>3,881,436</strong></td>
</tr>
<tr>
<th>10</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wordpress-importer/" title="WordPress Importer" target="_blank" rel="nofollow">WordPress Importer</a></td>
<td style="text-align:right;"><strong>3,865,567</strong></td>
</tr>
<tr>
<th>11</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wordpress-seo/" title="WordPress SEO by Yoast" target="_blank" rel="nofollow">WordPress SEO by Yoast</a></td>
<td style="text-align:right;"><strong>3,522,352</strong></td>
</tr>
<tr>
<th>12</th>
<td style=""><a href="http://wordpress.org/extend/plugins/si-contact-form/" title="Fast Secure Contact Form" target="_blank" rel="nofollow">Fast Secure Contact Form</a></td>
<td style="text-align:right;"><strong>3,398,773</strong></td>
</tr>
<tr>
<th>13</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-pagenavi/" title="WP-PageNavi" target="_blank" rel="nofollow">WP-PageNavi</a></td>
<td style="text-align:right;"><strong>3,268,081</strong></td>
</tr>
<tr>
<th>14</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-e-commerce/" title="WP e-Commerce" target="_blank" rel="nofollow">WP e-Commerce</a></td>
<td style="text-align:right;"><strong>2,272,074</strong></td>
</tr>
<tr>
<th>15</th>
<td style=""><a href="http://wordpress.org/extend/plugins/google-analyticator/" title="Google Analyticator" target="_blank" rel="nofollow">Google Analyticator</a></td>
<td style="text-align:right;"><strong>2,246,079</strong></td>
</tr>
<tr>
<th>16</th>
<td style=""><a href="http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/" title="Yet Another Related Posts Plugin" target="_blank" rel="nofollow">Yet Another Related Posts Plugin</a></td>
<td style="text-align:right;"><strong>2,149,607</strong></td>
</tr>
<tr>
<th>17</th>
<td style=""><a href="http://wordpress.org/extend/plugins/tinymce-advanced/" title="TinyMCE Advanced" target="_blank" rel="nofollow">TinyMCE Advanced</a></td>
<td style="text-align:right;"><strong>2,135,963</strong></td>
</tr>
<tr>
<th>18</th>
<td style=""><a href="http://wordpress.org/extend/plugins/sociable/" title="Sociable" target="_blank" rel="nofollow">Sociable</a></td>
<td style="text-align:right;"><strong>1,918,993</strong></td>
</tr>
<tr>
<th>19</th>
<td style=""><a href="http://wordpress.org/extend/plugins/sexybookmarks/" title="Shareaholic | email, bookmark, share buttons" target="_blank" rel="nofollow">Shareaholic | email, bookmark, share buttons</a></td>
<td style="text-align:right;"><strong>1,804,827</strong></td>
</tr>
<tr>
<th>20</th>
<td style=""><a href="http://wordpress.org/extend/plugins/w3-total-cache/" title="W3 Total Cache" target="_blank" rel="nofollow">W3 Total Cache</a></td>
<td style="text-align:right;"><strong>1,637,861</strong></td>
</tr>
<tr>
<th>21</th>
<td style=""><a href="http://wordpress.org/extend/plugins/broken-link-checker/" title="Broken Link Checker" target="_blank" rel="nofollow">Broken Link Checker</a></td>
<td style="text-align:right;"><strong>1,582,163</strong></td>
</tr>
<tr>
<th>22</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-db-backup/" title="WP-DB-Backup" target="_blank" rel="nofollow">WP-DB-Backup</a></td>
<td style="text-align:right;"><strong>1,525,307</strong></td>
</tr>
<tr>
<th>23</th>
<td style=""><a href="http://wordpress.org/extend/plugins/smart-youtube/" title="Smart YouTube PRO" target="_blank" rel="nofollow">Smart YouTube PRO</a></td>
<td style="text-align:right;"><strong>1,499,470</strong></td>
</tr>
<tr>
<th>24</th>
<td style=""><a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/" title="SI CAPTCHA Anti-Spam" target="_blank" rel="nofollow">SI CAPTCHA Anti-Spam</a></td>
<td style="text-align:right;"><strong>1,491,505</strong></td>
</tr>
<tr>
<th>25</th>
<td style=""><a href="http://wordpress.org/extend/plugins/buddypress/" title="BuddyPress" target="_blank" rel="nofollow">BuddyPress</a></td>
<td style="text-align:right;"><strong>1,384,458</strong></td>
</tr>
<tr>
<th>26</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-to-twitter/" title="WP to Twitter" target="_blank" rel="nofollow">WP to Twitter</a></td>
<td style="text-align:right;"><strong>1,304,006</strong></td>
</tr>
<tr>
<th>27</th>
<td style=""><a href="http://wordpress.org/extend/plugins/addthis/" title="AddThis" target="_blank" rel="nofollow">AddThis</a></td>
<td style="text-align:right;"><strong>1,205,178</strong></td>
</tr>
<tr>
<th>28</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-polls/" title="WP-Polls" target="_blank" rel="nofollow">WP-Polls</a></td>
<td style="text-align:right;"><strong>1,204,171</strong></td>
</tr>
<tr>
<th>29</th>
<td style=""><a href="http://wordpress.org/extend/plugins/redirection/" title="Redirection" target="_blank" rel="nofollow">Redirection</a></td>
<td style="text-align:right;"><strong>1,190,495</strong></td>
</tr>
<tr>
<th>30</th>
<td style=""><a href="http://wordpress.org/extend/plugins/vipers-video-quicktags/" title="Viper's Video Quicktags" target="_blank" rel="nofollow">Viper&#8217;s Video Quicktags</a></td>
<td style="text-align:right;"><strong>1,168,585</strong></td>
</tr>
<tr>
<th>31</th>
<td style=""><a href="http://wordpress.org/extend/plugins/really-simple-captcha/" title="Really Simple CAPTCHA" target="_blank" rel="nofollow">Really Simple CAPTCHA</a></td>
<td style="text-align:right;"><strong>1,163,948</strong></td>
</tr>
<tr>
<th>32</th>
<td style=""><a href="http://wordpress.org/extend/plugins/share-this/" title="ShareThis: Share Buttons and Sharing Analytics" target="_blank" rel="nofollow">ShareThis: Share Buttons and Sharing Analytics</a></td>
<td style="text-align:right;"><strong>1,154,171</strong></td>
</tr>
<tr>
<th>33</th>
<td style=""><a href="http://wordpress.org/extend/plugins/ultimate-tinymce/" title="Ultimate TinyMCE" target="_blank" rel="nofollow">Ultimate TinyMCE</a></td>
<td style="text-align:right;"><strong>1,084,269</strong></td>
</tr>
<tr>
<th>34</th>
<td style=""><a href="http://wordpress.org/extend/plugins/add-link-to-facebook/" title="" target="_blank" rel="nofollow">Add Link to Facebook</a></td>
<td style="text-align:right;"><strong>1,070,627</strong></td>
</tr>
<tr>
<th>35</th>
<td style=""><a href="http://wordpress.org/extend/plugins/twitter-tools/" title="Twitter Tools" target="_blank" rel="nofollow">Twitter Tools</a></td>
<td style="text-align:right;"><strong>1,029,755</strong></td>
</tr>
<tr>
<th>36</th>
<td style=""><a href="http://wordpress.org/extend/plugins/seo-ultimate/" title="SEO Ultimate" target="_blank" rel="nofollow">SEO Ultimate</a></td>
<td style="text-align:right;"><strong>1,024,045</strong></td>
</tr>
<tr>
<th>37</th>
<td style=""><a href="http://wordpress.org/extend/plugins/gd-star-rating/" title="GD Star Rating" target="_blank" rel="nofollow">GD Star Rating</a></td>
<td style="text-align:right;"><strong>1,021,902</strong></td>
</tr>
<tr>
<th>38</th>
<td style=""><a href="http://wordpress.org/extend/plugins/page-links-to/" title="Page Links To" target="_blank" rel="nofollow">Page Links To</a></td>
<td style="text-align:right;"><strong>1,001,807</strong></td>
</tr>
<tr>
<th>39</th>
<td style=""><a href="http://wordpress.org/extend/plugins/disqus-comment-system/" title="Disqus Comment System" target="_blank" rel="nofollow">Disqus Comment System</a></td>
<td style="text-align:right;"><strong>938,508</strong></td>
</tr>
<tr>
<th>40</th>
<td style=""><a href="http://wordpress.org/extend/plugins/subscribe2/" title="Subscribe2" target="_blank" rel="nofollow">Subscribe2</a></td>
<td style="text-align:right;"><strong>929,725</strong></td>
</tr>
<tr>
<th>41</th>
<td style=""><a href="http://wordpress.org/extend/plugins/seo-image/" title="SEO Friendly Images" target="_blank" rel="nofollow">SEO Friendly Images</a></td>
<td style="text-align:right;"><strong>878,403</strong></td>
</tr>
<tr>
<th>42</th>
<td style=""><a href="http://wordpress.org/extend/plugins/xhanch-my-twitter/" title="Xhanch - My Twitter" target="_blank" rel="nofollow">Xhanch &#8211; My Twitter</a></td>
<td style="text-align:right;"><strong>825,791</strong></td>
</tr>
<tr>
<th>43</th>
<td style=""><a href="http://wordpress.org/extend/plugins/video-playlist-and-gallery-plugin/" title="Post video players, slideshow albums, photo galleries and music / podcast playlist" target="_blank" rel="nofollow">Post video players, slideshow albums, photo galleries and music / podcast playlist</a></td>
<td style="text-align:right;"><strong>811,013</strong></td>
</tr>
<tr>
<th>44</th>
<td style=""><a href="http://wordpress.org/extend/plugins/social-media-widget/" title="Social Media Widget" target="_blank" rel="nofollow">Social Media Widget</a></td>
<td style="text-align:right;"><strong>807,215</strong></td>
</tr>
<tr>
<th>45</th>
<td style=""><a href="http://wordpress.org/extend/plugins/breadcrumb-navxt/" title="Breadcrumb NavXT" target="_blank" rel="nofollow">Breadcrumb NavXT</a></td>
<td style="text-align:right;"><strong>788,160</strong></td>
</tr>
<tr>
<th>46</th>
<td style=""><a href="http://wordpress.org/extend/plugins/maintenance-mode/" title="Maintenance Mode" target="_blank" rel="nofollow">Maintenance Mode</a></td>
<td style="text-align:right;"><strong>785,028</strong></td>
</tr>
<tr>
<th>47</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-dbmanager/" title="WP-DBManager" target="_blank" rel="nofollow">WP-DBManager</a></td>
<td style="text-align:right;"><strong>768,538</strong></td>
</tr>
<tr>
<th>48</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-postviews/" title="WP-PostViews" target="_blank" rel="nofollow">WP-PostViews</a></td>
<td style="text-align:right;"><strong>765,372</strong></td>
</tr>
<tr>
<th>49</th>
<td style=""><a href="http://wordpress.org/extend/plugins/exclude-pages/" title="Exclude Pages" target="_blank" rel="nofollow">Exclude Pages</a></td>
<td style="text-align:right;"><strong>763,862</strong></td>
</tr>
<tr>
<th>50</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-postratings/" title="WP-PostRatings" target="_blank" rel="nofollow">WP-PostRatings</a></td>
<td style="text-align:right;"><strong>750,771</strong></td>
</tr>
<tr>
<th>51</th>
<td style=""><a href="http://wordpress.org/extend/plugins/seo-automatic-links/" title="SEO Smart Links" target="_blank" rel="nofollow">SEO Smart Links</a></td>
<td style="text-align:right;"><strong>723,364</strong></td>
</tr>
<tr>
<th>52</th>
<td style=""><a href="http://wordpress.org/extend/plugins/flash-album-gallery/" title="" target="_blank" rel="nofollow">GRAND FlAGallery</a></td>
<td style="text-align:right;"><strong>722,949</strong></td>
</tr>
<tr>
<th>53</th>
<td style=""><a href="http://wordpress.org/extend/plugins/lightbox-plus/" title="Lightbox Plus ColorBox" target="_blank" rel="nofollow">Lightbox Plus ColorBox</a></td>
<td style="text-align:right;"><strong>718,426</strong></td>
</tr>
<tr>
<th>54</th>
<td style=""><a href="http://wordpress.org/extend/plugins/qtranslate/" title="qTranslate" target="_blank" rel="nofollow">qTranslate</a></td>
<td style="text-align:right;"><strong>709,942</strong></td>
</tr>
<tr>
<th>55</th>
<td style=""><a href="http://wordpress.org/extend/plugins/advanced-custom-fields/" title="Advanced Custom Fields" target="_blank" rel="nofollow">Advanced Custom Fields</a></td>
<td style="text-align:right;"><strong>692,536</strong></td>
</tr>
<tr>
<th>56</th>
<td style=""><a href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/" title="Ozh' Admin Drop Down Menu" target="_blank" rel="nofollow">Ozh&#8217; Admin Drop Down Menu</a></td>
<td style="text-align:right;"><strong>683,273</strong></td>
</tr>
<tr>
<th>57</th>
<td style=""><a href="http://wordpress.org/extend/plugins/commentluv/" title="CommentLuv" target="_blank" rel="nofollow">CommentLuv</a></td>
<td style="text-align:right;"><strong>644,375</strong></td>
</tr>
<tr>
<th>58</th>
<td style=""><a href="http://wordpress.org/extend/plugins/twitter-widget-pro/" title="Twitter Widget Pro" target="_blank" rel="nofollow">Twitter Widget Pro</a></td>
<td style="text-align:right;"><strong>639,557</strong></td>
</tr>
<tr>
<th>59</th>
<td style=""><a href="http://wordpress.org/extend/plugins/feedwordpress/" title="FeedWordPress" target="_blank" rel="nofollow">FeedWordPress</a></td>
<td style="text-align:right;"><strong>638,505</strong></td>
</tr>
<tr>
<th>60</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-maintenance-mode/" title="WP Maintenance Mode" target="_blank" rel="nofollow">WP Maintenance Mode</a></td>
<td style="text-align:right;"><strong>623,140</strong></td>
</tr>
<tr>
<th>61</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/" title="WordPress Related Posts" target="_blank" rel="nofollow">WordPress Related Posts</a></td>
<td style="text-align:right;"><strong>620,009</strong></td>
</tr>
<tr>
<th>62</th>
<td style=""><a href="http://wordpress.org/extend/plugins/pretty-link/" title="Pretty Link Lite" target="_blank" rel="nofollow">Pretty Link Lite</a></td>
<td style="text-align:right;"><strong>611,717</strong></td>
</tr>
<tr>
<th>63</th>
<td style=""><a href="http://wordpress.org/extend/plugins/simple-facebook-connect/" title="Simple Facebook Connect" target="_blank" rel="nofollow">Simple Facebook Connect</a></td>
<td style="text-align:right;"><strong>611,434</strong></td>
</tr>
<tr>
<th>64</th>
<td style=""><a href="http://wordpress.org/extend/plugins/image-widget/" title="Image Widget" target="_blank" rel="nofollow">Image Widget</a></td>
<td style="text-align:right;"><strong>593,184</strong></td>
</tr>
<tr>
<th>65</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-photo-album-plus/" title="WP Photo Album Plus" target="_blank" rel="nofollow">WP Photo Album Plus</a></td>
<td style="text-align:right;"><strong>592,246</strong></td>
</tr>
<tr>
<th>66</th>
<td style=""><a href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" title="Regenerate Thumbnails" target="_blank" rel="nofollow">Regenerate Thumbnails</a></td>
<td style="text-align:right;"><strong>591,018</strong></td>
</tr>
<tr>
<th>67</th>
<td style=""><a href="http://wordpress.org/extend/plugins/audio-player/" title="Audio Player" target="_blank" rel="nofollow">Audio Player</a></td>
<td style="text-align:right;"><strong>584,533</strong></td>
</tr>
<tr>
<th>68</th>
<td style=""><a href="http://wordpress.org/extend/plugins/digg-digg/" title="Digg Digg" target="_blank" rel="nofollow">Digg Digg</a></td>
<td style="text-align:right;"><strong>574,819</strong></td>
</tr>
<tr>
<th>69</th>
<td style=""><a href="http://wordpress.org/extend/plugins/polldaddy/" title="Polldaddy Polls &amp; Ratings" target="_blank" rel="nofollow">Polldaddy Polls &amp; Ratings</a></td>
<td style="text-align:right;"><strong>570,559</strong></td>
</tr>
<tr>
<th>70</th>
<td style=""><a href="http://wordpress.org/extend/plugins/contact-form-plugin/" title="Contact Form" target="_blank" rel="nofollow">Contact Form</a></td>
<td style="text-align:right;"><strong>540,841</strong></td>
</tr>
<tr>
<th>71</th>
<td style=""><a href="http://wordpress.org/extend/plugins/events-manager/" title="Events Manager" target="_blank" rel="nofollow">Events Manager</a></td>
<td style="text-align:right;"><strong>540,186</strong></td>
</tr>
<tr>
<th>72</th>
<td style=""><a href="http://wordpress.org/extend/plugins/facebook/" title="Facebook" target="_blank" rel="nofollow">Facebook</a></td>
<td style="text-align:right;"><strong>536,040</strong></td>
</tr>
<tr>
<th>73</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-table-reloaded/" title="WP-Table Reloaded" target="_blank" rel="nofollow">WP-Table Reloaded</a></td>
<td style="text-align:right;"><strong>533,456</strong></td>
</tr>
<tr>
<th>74</th>
<td style=""><a href="http://wordpress.org/extend/plugins/bbpress/" title="bbPress" target="_blank" rel="nofollow">bbPress</a></td>
<td style="text-align:right;"><strong>532,741</strong></td>
</tr>
<tr>
<th>75</th>
<td style=""><a href="http://wordpress.org/extend/plugins/theme-my-login/" title="Theme My Login" target="_blank" rel="nofollow">Theme My Login</a></td>
<td style="text-align:right;"><strong>526,880</strong></td>
</tr>
<tr>
<th>76</th>
<td style=""><a href="http://wordpress.org/extend/plugins/woocommerce/" title="WooCommerce - excelling eCommerce" target="_blank" rel="nofollow">WooCommerce &#8211; excelling eCommerce</a></td>
<td style="text-align:right;"><strong>523,269</strong></td>
</tr>
<tr>
<th>77</th>
<td style=""><a href="http://wordpress.org/extend/plugins/user-role-editor/" title="User Role Editor" target="_blank" rel="nofollow">User Role Editor</a></td>
<td style="text-align:right;"><strong>517,980</strong></td>
</tr>
<tr>
<th>78</th>
<td style=""><a href="http://wordpress.org/extend/plugins/lightbox-gallery/" title="Lightbox Gallery" target="_blank" rel="nofollow">Lightbox Gallery</a></td>
<td style="text-align:right;"><strong>517,616</strong></td>
</tr>
<tr>
<th>79</th>
<td style=""><a href="http://wordpress.org/extend/plugins/custom-contact-forms/" title="Custom Contact Forms" target="_blank" rel="nofollow">Custom Contact Forms</a></td>
<td style="text-align:right;"><strong>511,914</strong></td>
</tr>
<tr>
<th>80</th>
<td style=""><a href="http://wordpress.org/extend/plugins/download-monitor/" title="WordPress Download Monitor" target="_blank" rel="nofollow">WordPress Download Monitor</a></td>
<td style="text-align:right;"><strong>503,864</strong></td>
</tr>
<tr>
<th>81</th>
<td style=""><a href="http://wordpress.org/extend/plugins/widget-logic/" title="Widget Logic" target="_blank" rel="nofollow">Widget Logic</a></td>
<td style="text-align:right;"><strong>502,709</strong></td>
</tr>
<tr>
<th>82</th>
<td style=""><a href="http://wordpress.org/extend/plugins/backwpup/" title="BackWPup" target="_blank" rel="nofollow">BackWPup</a></td>
<td style="text-align:right;"><strong>495,676</strong></td>
</tr>
<tr>
<th>83</th>
<td style=""><a href="http://wordpress.org/extend/plugins/bulletproof-security/" title="BulletProof Security" target="_blank" rel="nofollow">BulletProof Security</a></td>
<td style="text-align:right;"><strong>494,423</strong></td>
</tr>
<tr>
<th>84</th>
<td style=""><a href="http://wordpress.org/extend/plugins/eshop/" title="eShop" target="_blank" rel="nofollow">eShop</a></td>
<td style="text-align:right;"><strong>482,609</strong></td>
</tr>
<tr>
<th>85</th>
<td style=""><a href="http://wordpress.org/extend/plugins/newsletter/" title="Newsletter" target="_blank" rel="nofollow">Newsletter</a></td>
<td style="text-align:right;"><strong>479,946</strong></td>
</tr>
<tr>
<th>86</th>
<td style=""><a href="http://wordpress.org/extend/plugins/backupwordpress/" title="BackUpWordPress" target="_blank" rel="nofollow">BackUpWordPress</a></td>
<td style="text-align:right;"><strong>462,837</strong></td>
</tr>
<tr>
<th>87</th>
<td style=""><a href="http://wordpress.org/extend/plugins/really-simple-facebook-twitter-share-buttons/" title="Really simple Facebook Twitter share buttons" target="_blank" rel="nofollow">Really simple Facebook Twitter share buttons</a></td>
<td style="text-align:right;"><strong>459,172</strong></td>
</tr>
<tr>
<th>88</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wordpress-popular-posts/" title="WordPress Popular Posts" target="_blank" rel="nofollow">WordPress Popular Posts</a></td>
<td style="text-align:right;"><strong>452,992</strong></td>
</tr>
<tr>
<th>89</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/" title="WordPress Mobile Pack" target="_blank" rel="nofollow">WordPress Mobile Pack</a></td>
<td style="text-align:right;"><strong>445,065</strong></td>
</tr>
<tr>
<th>90</th>
<td style=""><a href="http://wordpress.org/extend/plugins/mappress-google-maps-for-wordpress/" title="MapPress Easy Google Maps" target="_blank" rel="nofollow">MapPress Easy Google Maps</a></td>
<td style="text-align:right;"><strong>422,942</strong></td>
</tr>
<tr>
<th>91</th>
<td style=""><a href="http://wordpress.org/extend/plugins/exploit-scanner/" title="Exploit Scanner" target="_blank" rel="nofollow">Exploit Scanner</a></td>
<td style="text-align:right;"><strong>422,545</strong></td>
</tr>
<tr>
<th>92</th>
<td style=""><a href="http://wordpress.org/extend/plugins/jw-player-plugin-for-wordpress/" title="JW Player for WordPress &ndash; Flash &amp; HTML5 Video Player" target="_blank" rel="nofollow">JW Player for WordPress &ndash; Flash &amp; HTML5 Video Player</a></td>
<td style="text-align:right;"><strong>409,331</strong></td>
</tr>
<tr>
<th>93</th>
<td style=""><a href="http://wordpress.org/extend/plugins/search-and-replace/" title="Search and Replace" target="_blank" rel="nofollow">Search and Replace</a></td>
<td style="text-align:right;"><strong>405,938</strong></td>
</tr>
<tr>
<th>94</th>
<td style=""><a href="http://wordpress.org/extend/plugins/better-wp-security/" title="Better WP Security" target="_blank" rel="nofollow">Better WP Security</a></td>
<td style="text-align:right;"><strong>404,597</strong></td>
</tr>
<tr>
<th>95</th>
<td style=""><a href="http://wordpress.org/extend/plugins/adrotate/" title="AdRotate" target="_blank" rel="nofollow">AdRotate</a></td>
<td style="text-align:right;"><strong>404,122</strong></td>
</tr>
<tr>
<th>96</th>
<td style=""><a href="http://wordpress.org/extend/plugins/antispam-bee/" title="Antispam Bee" target="_blank" rel="nofollow">Antispam Bee</a></td>
<td style="text-align:right;"><strong>403,337</strong></td>
</tr>
<tr>
<th>97</th>
<td style=""><a href="http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/" title="Contact Form DB" target="_blank" rel="nofollow">Contact Form DB</a></td>
<td style="text-align:right;"><strong>400,268</strong></td>
</tr>
<tr>
<th>98</th>
<td style=""><a href="http://wordpress.org/extend/plugins/mailchimp/" title="MailChimp List Subscribe Form" target="_blank" rel="nofollow">MailChimp List Subscribe Form</a></td>
<td style="text-align:right;"><strong>396,713</strong></td>
</tr>
<tr>
<th>99</th>
<td style=""><a href="http://wordpress.org/extend/plugins/fancybox-for-wordpress/" title="FancyBox for WordPress" target="_blank" rel="nofollow">FancyBox for WordPress</a></td>
<td style="text-align:right;"><strong>393,663</strong></td>
</tr>
<tr>
<th>100</th>
<td style=""><a href="http://wordpress.org/extend/plugins/wp-mail-smtp/" title="WP Mail SMTP" target="_blank" rel="nofollow">WP Mail SMTP</a></td>
<td style="text-align:right;"><strong>393,471</strong></td>
</tr>
</tbody>
</table>
<p>WordPress plugin repository is very active and new plugins are added regularly. Most downloaded wordpress plugins doesn&#8217;t mean they are good, use plugins which are having good ranking and features to suit your websites requirements. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/100-most-downloaded-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open WordPress Custom Menu Link in New Window or Tab</title>
		<link>http://www.snilesh.com/wordpress-snippets/open-wordpress-custom-menu-link-in-new-window-or-tab/</link>
		<comments>http://www.snilesh.com/wordpress-snippets/open-wordpress-custom-menu-link-in-new-window-or-tab/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 09:16:47 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[wordpress snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1900</guid>
		<description><![CDATA[WordPress added excellent menu management feature using wp_nav_menu() function. Best feature introduced inside menu management was introduction of custom links using which you can add custom links to your website&#8217;s navigation section. So using this feature you can add any link to your navigation. When you add custom links to your navigation you want option [...]]]></description>
				<content:encoded><![CDATA[<p>WordPress added excellent menu management feature using wp_nav_menu() function. Best feature introduced inside menu management was introduction of custom links using which you can add custom links to your website&#8217;s navigation section. So using this feature you can add any link to your navigation.</p>
<p>When you add custom links to your navigation you want option to set target to open link in a new window or tab. By default this feature is disabled under screen option you have to enable this option to set target attribute to your navigation links.</p>
<h2>Open links in new window wp_nav_menu() </h2>
<p>First go to <strong>Appearance > Menu</strong>, and click on screen options in the top right corner. Then check the Link Target option.<br />
<img src="http://www.snilesh.com/wp-content/uploads/2013/02/wp_nav_menu_open_in_window.jpg" alt="wp_nav_menu_open_in_window" width="550" height="156" class="aligncenter size-full wp-image-1901" /></p>
<p>After you enable link target option from screen options settings you will find dropdown added to each menu item to set target.<br />
<img src="http://www.snilesh.com/wp-content/uploads/2013/02/new_window_wp_menu.jpg" alt="new_window_wp_menu" width="429" height="223" class="aligncenter size-full wp-image-1902" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/wordpress-snippets/open-wordpress-custom-menu-link-in-new-window-or-tab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress qtranslate plugin get current selected language</title>
		<link>http://www.snilesh.com/wordpress-snippets/wordpress-qtranslate-plugin-get-current-selected-language/</link>
		<comments>http://www.snilesh.com/wordpress-snippets/wordpress-qtranslate-plugin-get-current-selected-language/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 09:37:47 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[wordpress snippets]]></category>
		<category><![CDATA[qTranslate]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1893</guid>
		<description><![CDATA[If you are using qtranslate wordpress plugin on your website and want to display content based on selected language. Then qTranslate plugin have one function to return selected language. Using this function you can display content based on selected language inside your theme&#8217;s PHP files. qTranslate plugin display different wp_nav_menu() based on selected language If [...]]]></description>
				<content:encoded><![CDATA[<p>If you are using <a href="http://wordpress.org/extend/plugins/qtranslate/" title="qTranslate wordpress plugin" target="_blank">qtranslate</a> wordpress plugin on your website and want to display content based on selected language. Then qTranslate plugin have one function to return selected language. Using this function you can display content based on selected language inside your theme&#8217;s PHP files.</p>
<pre class="brush: php; title: ; notranslate">

    if(qtrans_getLanguage()=='en') {
      // add your code here if the current selected language is 'en' (English)
    } elseif(qtrans_getLanguage()=='de') {
      // add your code here if the current selected language de 'en' (German)
    }
    else {}
</pre>
<h2>qTranslate plugin display different wp_nav_menu() based on selected language</h2>
<p>If you are planning to display wp_nav_menu() based on selected language then following snippet will help you. It will display different wp_nav_menu() by selected language. First you have to add different menus inside your wordpress admin.</p>
<p>First you have to register menus inside functions.php add following lines of code inside your theme&#8217;s fuctions.php file</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php 
if ( function_exists( 'register_nav_menus' ) ) {
    register_nav_menus(
        array(
          'menu-header-en' =&gt; 'Main Menu EN',
          'menu-header-de' =&gt; 'Main Menu DE'
        )
    );
} ?&gt;
</pre>
<p>Then add following lines of code where you want to display this menu.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php wp_nav_menu( array(  'theme_location' =&gt; 'menu-header-' . qtrans_getLanguage() , 'sort_column' =&gt; 'menu_order', 'container_class' =&gt; 'header-navigation' ) ); ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/wordpress-snippets/wordpress-qtranslate-plugin-get-current-selected-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>display hidden .htaccess files on filezilla</title>
		<link>http://www.snilesh.com/how-to/display-hidden-htaccess-files-on-filezilla/</link>
		<comments>http://www.snilesh.com/how-to/display-hidden-htaccess-files-on-filezilla/#comments</comments>
		<pubDate>Tue, 20 Nov 2012 17:05:24 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[filezilla]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1867</guid>
		<description><![CDATA[When you access remote servers using filezilla FTP client, hidden files are not displayed. To enable hidden files you have to change filezilla client settings. If you are using filezilla version 3.6+ then first click on server -> &#8220;Force Showing Hidden Files&#8221; when you click on that hidden files like htacces will be displayed.]]></description>
				<content:encoded><![CDATA[<p>When you access remote servers using filezilla FTP client, hidden files are not displayed. To enable hidden files you have to change filezilla client settings.</p>
<p>If you are using filezilla version 3.6+ then first click on server -> &#8220;Force Showing Hidden Files&#8221; when you click on that hidden files like htacces will be displayed.</p>
<p><img src="http://www.snilesh.com/wp-content/uploads/2012/11/filezilla.jpg" alt="" title="filezilla" width="449" height="200" class="aligncenter size-full wp-image-1869" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/how-to/display-hidden-htaccess-files-on-filezilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show All attached images for the current post excluding featured thumbnail</title>
		<link>http://www.snilesh.com/wordpress-snippets/show-all-attached-images-for-the-current-post-excluding-featured-thumbnail/</link>
		<comments>http://www.snilesh.com/wordpress-snippets/show-all-attached-images-for-the-current-post-excluding-featured-thumbnail/#comments</comments>
		<pubDate>Mon, 24 Sep 2012 17:05:01 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[wordpress snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1838</guid>
		<description><![CDATA[If you want to display all the attachments of current post excluding featured thumbnail then you can use following code snippet. First we have to find featured image id. You can get featured image id if a thumbnail is set using get_post_thumbnail_id() function. This function returns id of the attached featured image. You have to [...]]]></description>
				<content:encoded><![CDATA[<p>If you want to display all the attachments of current post excluding featured thumbnail then you can use following code snippet.</p>
<p>First we have to find featured image id. You can get featured image id if a thumbnail is set using <a href="http://codex.wordpress.org/Function_Reference/get_post_thumbnail_id" title="Get Post Thumbnail id" target="_blank">get_post_thumbnail_id()</a> function. This function returns id of the attached featured image.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php $post_thumbnail_id = get_post_thumbnail_id( $post_id );  ?&gt;
</pre>
<p>You have to pass post id to get featured image id.</p>
<p>Complete code to display all attached images to current post excluding featured image </p>
<pre class="brush: php; title: ; notranslate">
$args = array(
	'post_type'   =&gt; 'attachment',
	'numberposts' =&gt; -1,
	'post_status' =&gt; null,
	'post_parent' =&gt; $post-&gt;ID,
	'exclude'     =&gt; get_post_thumbnail_id()
	);

$attachments = get_posts( $args );

if ( $attachments ) {
	foreach ( $attachments as $attachment ) {
		echo apply_filters( 'the_title', $attachment-&gt;post_title );
		the_attachment_link( $attachment-&gt;ID, false );
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/wordpress-snippets/show-all-attached-images-for-the-current-post-excluding-featured-thumbnail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50+ free psd web elements for download</title>
		<link>http://www.snilesh.com/freebies/50-free-psd-web-elements-download/</link>
		<comments>http://www.snilesh.com/freebies/50-free-psd-web-elements-download/#comments</comments>
		<pubDate>Sat, 18 Aug 2012 09:46:31 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[freebies]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1737</guid>
		<description><![CDATA[When you start website design your first step is to create a website layout using adobe photoshop and create a website ui with you design skills. You can start from scratch using your designing skills, but their are huge number of free psd web elements available for download, you can use them in your website [...]]]></description>
				<content:encoded><![CDATA[<p>When you start website design your first step is to create a website layout using adobe photoshop and create a website ui with you design skills. You can start from scratch using your designing skills, but their are huge number of <a href="http://www.snilesh.com/freebies/50-free-psd-web-elements-download/" title="Free PSD web Elements">free psd web elements</a> available for download, you can use them in your website design. Not only they are available for free but they are excellent in quality and skills, So then why waste your time by creating your layout from scratch instead use these free ui elements in your design. </p>
<p><a href="http://www.snilesh.com/freebies/50-free-psd-web-elements-download/" title="free psd web elements "><img src="http://www.snilesh.com/wp-content/uploads/2012/08/free-psd-web-elements.jpg" alt="free psd web elements " width="500" height="200" class="aligncenter size-full wp-image-1781" /></a></p>
<p>In this post i want to share you a collection of web UI, Phone UI ,buttons and Wireframes.</p>
<h2>Free PSD web elements Download</h2>
<h3>Blaubarry UI Kit by Mikael Eidenberg</h3>
<p><a href="http://365psd.com/day/2-259/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/blaubarry.jpg" alt="blaubarry" title="blaubarry" width="500" height="200" class="aligncenter size-full wp-image-1738" /></a></p>
<h3>Free UI Elements by Matthew Daniels</h3>
<p><a href="http://freeuikits.com/free-psd-file-ui-elements/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/4.jpg" alt="" title="4" width="500" height="200" class="aligncenter size-full wp-image-1741" /></a></p>
<h3>Chutzpah UI Kit by Morgan Allan Knutson</h3>
<p><a href="http://designmoo.com/2435/chutzpah-user-interface-kit/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/chutzpah.jpg" alt="" title="chutzpah" width="500" height="200" class="aligncenter size-full wp-image-1743" /></a></p>
<h3>Dark Sexy UI Elements by Josh Hemsley</h3>
<p><a href="http://designmoo.com/1405/hiphop-ui/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/dark.jpg" alt="" title="dark" width="499" height="200" class="aligncenter size-full wp-image-1745" /></a></p>
<h3>Butterscotch UI Kit by Thomas Bossee</h3>
<p><a href="http://www.designkindle.com/2011/10/31/butterscotch-ui-kit/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/butterscotch.jpg" alt="" title="butterscotch" width="499" height="200" class="aligncenter size-full wp-image-1747" /></a></p>
<h3>Moonify UI by Joachim</h3>
<p><a href="http://www.designkindle.com/2011/12/07/moonify-ui/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/moonify.jpg" alt="" title="moonify" width="500" height="200" class="aligncenter size-full wp-image-1749" /></a></p>
<h3>Free UI PSD by Mark Bauer</h3>
<p><a href="http://dribbble.com/shots/368468-Free-UI-PSD"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/free-ui-psd.jpg" alt="" title="free-ui-psd" width="500" height="200" class="aligncenter size-full wp-image-1751" /></a></p>
<h3>Sleek UI Elements by Matthew Daniels</h3>
<p><a href="http://www.designkindle.com/2011/07/25/sleek-ui-elements/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/sleek-ui.jpg" alt="" title="sleek-ui" width="500" height="200" class="aligncenter size-full wp-image-1753" /></a></p>
<h3>Dark UI Kit by Alexandre Deschamps</h3>
<p><a href="http://dribbble.com/shots/322306-Dark-UI-Kit-free-PSD"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/dark-ui.jpg" alt="" title="dark-ui" width="500" height="200" class="aligncenter size-full wp-image-1755" /></a></p>
<h3>UI Element Set by Max Fellmuth</h3>
<p><a href="http://365psd.com/day/2-106/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/ui-element-set-max.jpg" alt="" title="ui-element-set-max" width="500" height="200" class="aligncenter size-full wp-image-1757" /></a></p>
<h3>UI Kit PSD by Monty Desi</h3>
<p><a href="http://montydesi.deviantart.com/art/UI-Kit-PSD-277682185"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/ui-monty.jpg" alt="" title="ui-monty" width="498" height="200" class="aligncenter size-full wp-image-1759" /></a></p>
<h3>Light UI Elements by Matt Wadsworth</h3>
<p><a href="http://freeuikits.com/free-psd-light-ui-elements/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/ligh-ui.jpg" alt="" title="ligh-ui" width="500" height="200" class="aligncenter size-full wp-image-1761" /></a></p>
<h3>Free PSD: Cloudy UI Kit by Sebastian Gabriel</h3>
<p><a href="http://freeuikits.com/free-psd-cloudy-ui-kit/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/free-cloudy.jpg" alt="" title="free-cloudy" width="500" height="200" class="aligncenter size-full wp-image-1763" /></a></p>
<h3>Aluminoi UI Kit by Loubna Aggoun</h3>
<p><a href="http://365psd.com/day/2-278/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/aluminoi.jpg" alt="" title="aluminoi" width="500" height="200" class="aligncenter size-full wp-image-1766" /></a></p>
<h3>Grey UI Pack by Corey Haggard</h3>
<p><a href="http://365psd.com/day/2-257/"><img src="http://www.snilesh.com/wp-content/uploads/2012/08/grey-ui-pack.jpg" alt="" title="grey-ui-pack" width="500" height="200" class="aligncenter size-full wp-image-1768" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/freebies/50-free-psd-web-elements-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 758/862 objects using disk: basic

 Served from: www.snilesh.com @ 2013-05-17 10:20:52 by W3 Total Cache -->
