<?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>Nilesh Shiragave PHP &#124; Wordpress Expert</title>
	<atom:link href="http://www.snilesh.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snilesh.com</link>
	<description>PHP,Wordpress,Jquery Expert</description>
	<lastBuildDate>Thu, 26 Jan 2012 08:21:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to remove the WordPress.org link from Login / Register Page</title>
		<link>http://www.snilesh.com/resources/wordpress/how-to-remove-the-wordpress-org-link-from-login-register-page/</link>
		<comments>http://www.snilesh.com/resources/wordpress/how-to-remove-the-wordpress-org-link-from-login-register-page/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 08:20:12 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1634</guid>
		<description><![CDATA[On self hosted wordpress blogs wordpress logo on wordpress login or register page link to wordpress.org website. If you want to remove WordPress.org link from logo of your wordpress blog then just add following links of code inside your themes functions.php file. Make sure to add above code inside PHP tag like In above code [...]]]></description>
			<content:encoded><![CDATA[<p>On self hosted wordpress blogs wordpress logo on wordpress login or register page link to <a href="http://wordpress.org" title="Wordpress" target="_blank">wordpress.org</a> website. </p>
<p>If you want to remove <a href="http://wordpress.org" title="wordpress">WordPress.org</a> link from logo of your wordpress blog then just add following links of code inside your themes functions.php file.</p>
<pre class="brush: php; title: ; notranslate">
/* WordPress Change Login page logo link */
function change_login_page_url( $url ) {
    return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'change_login_page_url' );
</pre>
<p>Make sure to add above code inside PHP tag like</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/* WordPress Change Login page logo link */
function change_login_page_url( $url ) {
    return get_bloginfo( 'url' );
}
add_filter( 'login_headerurl', 'change_login_page_url' );
?&gt;
</pre>
<p>In above code links url is changed to your website url. If you want to link logo to a different url then use following code and replace mywebsite.com with your link.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/* WordPress Change Login page logo link */
function change_login_page_url( $url ) {
    $link_url='http://mywebsite.com';
    return $link_url;
}
add_filter( 'login_headerurl', 'change_login_page_url' );
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/how-to-remove-the-wordpress-org-link-from-login-register-page/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>total post count of a category and its child categories wordpress</title>
		<link>http://www.snilesh.com/resources/wordpress/total-post-count-of-a-category-and-its-child-categories-wordpress/</link>
		<comments>http://www.snilesh.com/resources/wordpress/total-post-count-of-a-category-and-its-child-categories-wordpress/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 12:57:59 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[wordpress snippets]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1631</guid>
		<description><![CDATA[Use following code to get total posts count of a category and all its child categories. To use this code you have to add following function inside your themes functions.php file And yo use this code to display post count call this function anywhere inside your wordpress template files as This code snippet is useful [...]]]></description>
			<content:encoded><![CDATA[<p>Use following code to get total posts count of a category and all its child categories. To use this code you have to add following function inside your themes functions.php file</p>
<pre class="brush: php; title: ; notranslate">
function wp_get_postcount($id)
{
//return count of post in category child of ID 15
$count = 0;
$taxonomy = 'category';
$args = array(
  'child_of' =&gt; $id,
);
$tax_terms = get_terms($taxonomy,$args);
foreach ($tax_terms as $tax_term) {
$count +=$tax_term-&gt;count;
}
return $count;
}
</pre>
<p>And yo use this code to display post count call this function anywhere inside your wordpress template files as</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
echo wp_get_postcount(5);
// To get post count of category having category id 5
?&gt;
</pre>
<p>This code snippet is useful to get total post count from category and its child categories.<br />
Change 5 with your category id for which you want total post count.</p>
<h3>Reference</h3>
<p><a href="http://wordpress.org/support/topic/how-to-display-total-post-count-of-a-category-and-all-its-child-categories" title="Wordpress Codex" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/total-post-count-of-a-category-and-its-child-categories-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Custom Image Headers to your WordPress.org plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/add-custom-image-headers-to-your-wordpress-org-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/add-custom-image-headers-to-your-wordpress-org-plugins/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 13:38:00 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1622</guid>
		<description><![CDATA[One good option is added for you if you are a wordpress plugin developer. WordPress.org added custom headers on wordpress plugin pages as part of an experiment, All plugin developers can now customize their plugin page with customized banner image of specified size 772&#215;250 px on top header section of their plugin page. WordPress developer [...]]]></description>
			<content:encoded><![CDATA[<p>One good option is added for you if you are a wordpress plugin developer. WordPress.org added custom headers on wordpress plugin pages as part of an experiment, All plugin developers can now customize their plugin page with customized banner image of specified size 772&#215;250 px on top header section of their plugin page.</p>
<p>WordPress developer can now add 772&#215;250 px JPG/PNG banner image or picture on top of their WordPress.org plugin page. To check this feature in action you can check <a href="http://wordpress.org/extend/plugins/social-toolbar/" title="social toolbar" target="_blank">social toolbar</a> plugins page on wordpress.org website. </p>
<h3>How to Add Image in WordPress Plugin Page Header</h3>
<p>1] Create one 772×250 px sized PNG or a JPG / JPEG image or banner for your wordpress plugin. GIF images are not supported for this image.</p>
<p>2] If you are using windows os then create one directory named &#8216;assets&#8217; inside your plugins root location at the same level where your trunk directory located and not inside trunk directory.<br />
<img src="http://www.snilesh.com/wp-content/uploads/2011/12/assets.jpg" alt="Assets" title="assets" width="437" height="155" class="aligncenter size-full wp-image-1623" /></p>
<p>3] Now rename your banner / picture / Image which you created in first step, rename it to banner-772&#215;250.[jpeg/jpg/png]. And Save that inside &#8220;<strong>assets</strong>&#8221; directory which you created in second step.</p>
<p>4] Now right click on assets folder and select TortoiseSVN->Add. This will add both the assets directory and the banner image to your code in the SVN.</p>
<p>5] Wait for 15 minutes to get plugin pages get updated. </p>
<p>Credits<br />
<a href="http://wpdevel.wordpress.com/2011/12/21/been-giving-a-lot-of-thought-to-how/" title="WP Dev" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/add-custom-image-headers-to-your-wordpress-org-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress rating plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-rating-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-rating-plugins/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 13:14:37 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[poll]]></category>
		<category><![CDATA[polldaddy]]></category>
		<category><![CDATA[polling]]></category>
		<category><![CDATA[polls]]></category>
		<category><![CDATA[rate]]></category>
		<category><![CDATA[rating]]></category>
		<category><![CDATA[ratings]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[surveys]]></category>
		<category><![CDATA[vote]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wppolls]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1614</guid>
		<description><![CDATA[If you want to check whether your blog is popular and visitors like it or not then best way to get visitors feedback using wordpress rating plugins. You can ask your visitors to rate your blog posts whether they like your blog posts or not. In this post i will show you list of popular [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to check whether your blog is popular and visitors like it or not then best way to get visitors feedback using <strong>wordpress rating plugins</strong>. You can ask your visitors to rate your blog posts whether they like your blog posts or not.</p>
<p>In this post i will show you list of popular wordpress rating plugins.</p>
<h2>Free WordPress Rating Plugins</h2>
<h3><a href="http://wordpress.org/extend/plugins/gd-star-rating/" title="GD Star Rating" target="_blank">GD Star Rating</a></h3>
<p><a href="http://www.gdstarrating.com/" title="GD Star Rating" target="_blank">GD Star Rating plugin</a> allows you to set up <strong>rating or review system</strong> on your wordpress blog. You can add rating or review system for posts, pages and comments on your blog. You can set many options for displaying the rating stars, and add widgets into the sidebars for displaying top ratings and other statistics generated by the plugin. Plugin includes advanced settings for managing ratings, This plugin also supports multi ratings along with thumbs based ratings. Plugin supports use of cache plugins and dynamic loading of data using ajax.</p>
<h3><a href="http://lesterchan.net/portfolio/programming/php/#wp-postratings" title="Wp Post Ratings" target="_blank">WP-Post Ratings</a></h3>
<p><a href="http://wordpress.org/extend/plugins/wp-postratings/" title="Wp-Post Ratings" target="_blank">Wp Post rating</a> is also a good rating plugin. Which adds ajax based rating system on your wordpress blog. Plugin comes with options to add star rating system on your blog posts.</p>
<h3><a href="http://wordpress.org/extend/plugins/star-rating-for-reviews/" title="Star Rating Reviews" target="_blank">Star Rating for Reviews</a></h3>
<p><a href="http://wordpress.org/extend/plugins/star-rating-for-reviews/" title="Star Rating Reviews" target="_blank">Star Rating for Reviews</a> is a simple WordPress plugin that inserts pretty rating stars based on the score you assign using intuitive, inline [rating:] tags. It can also calculate and output overall ratings for you based on all previous scores you have assigned, useful for reviews that have multiple categories or an album review where each track is assigned a score.</p>
<h3><a href="http://wordpress.org/extend/plugins/polldaddy/" title="Polldaddy Polls &#038; Ratings" target="_blank">Polldaddy Polls &#038; Ratings</a></h3>
<p><a href="http://wordpress.org/extend/plugins/polldaddy/" title="Polldaddy Polls &#038; Ratings" target="_blank">The Polldaddy Polls and Ratings plugin</a> allows you to create and manage polls and ratings from within your WordPress dashboard. You can create polls, choose from 20 different styles for your polls, and view all results for your polls as they come in. All Polldaddy polls are fully customizable, you can set a close date for your poll, create multiple choice polls, choose whether to display the results or keep them private. You can also create your own custom style for your poll. You can even embed the polls you create on other websites.</p>
<h3><a href="http://sneak.co.nz/projects/ds-rating/" title="DS-Rating For WordPress" target="_blank">DS-Rating for WordPress</a></h3>
<p><a href="http://sneak.co.nz/projects/ds-rating/" title="DS-Rating For WordPress" target="_blank">DS-Rating</a> is a plugin for WordPress that gives you the ability to add a rating system to posts, anywhere from 0 to 5 (including half steps). Note that this plugin does not allow users to rate posts when browsing a site – It is only set up to allow publishers or administrators to add ratings when creating or editing a post. So only administrator or publishers can add ratings to their posts. This is good for review website.</p>
<h3><a href="http://wordpress.org/extend/plugins/rating-widget/" title="Wordpress Rating Widget" target="_blank">Rating Widget</a></h3>
<p>The <a href="http://wordpress.org/extend/plugins/rating-widget/" title="Wordpress Rating Widget" target="_blank">Rating-Widget Ratings plugin</a> allows you to create and manage ratings from within your WordPress dashboard. You can embed ratings into your posts, pages or comments. PLUS, you can embed ratings into your BuddyPress activity updates and comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-rating-plugins/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 Sonny Features</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-3-3-sonny-features/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-3-3-sonny-features/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 14:07:15 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[new release]]></category>
		<category><![CDATA[wordpress 3.3]]></category>
		<category><![CDATA[wordpress release]]></category>
		<category><![CDATA[wp 3.3]]></category>
		<category><![CDATA[wp release]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1584</guid>
		<description><![CDATA[Finally On December 12, 2011, WordPress Version 3.3, named for Sonny Stitts, was released to the public. You can download that from wordpress.org or update your existing wordpress installation from wordpress dashboard. WordPress 3.3 Features New media uploader Wordpress 3.3 comes with a new media and file uploader with drag and drop uploading! Which makes [...]]]></description>
			<content:encoded><![CDATA[<p>Finally On December 12, 2011, WordPress Version 3.3, named for Sonny Stitts, was released to the public. You can download that from <a href="http://wordpress.org" title="wordpress" target="_blank">wordpress.org</a> or update your existing wordpress installation from wordpress dashboard.</p>
<h2>WordPress 3.3 Features</h2>
<h4>New media uploader</h4>
<p><img src="http://www.snilesh.com/wp-content/uploads/2011/12/new_media_uploader.jpg" alt="" title="new_media_uploader" width="400" height="255" class="aligncenter size-full wp-image-1585" /><br />
Wordpress 3.3 comes with a new media and file uploader with drag and drop uploading! Which makes life a lot easier if you’re having to upload multiple files at once. New Drag And drop uploader will only work on latest HTML5 compatible browsers.</p>
<h4>Improvement In WordPress Dashboard Interface</h4>
<p><img src="http://www.snilesh.com/wp-content/uploads/2011/12/fly_out_menus.jpg" alt="" title="fly_out_menus" width="355" height="271" class="aligncenter size-full wp-image-1586" /><br />
Wordpress 3.3 Comes with excellent improvements in wordpress dashboards. Features like fly out menu&#8217;s, admin bar redesigned.<br />
<img src="http://www.snilesh.com/wp-content/uploads/2011/12/tour.jpg" alt="" title="tour" width="400" height="356" class="aligncenter size-full wp-image-1587" /><br />
There are now feature pointers which provide tips around the various WordPress admin screens when there are new features added. These help highlight what’s changed in the new version and give an idea of what the new feature does.</p>
<h4>WordPress API Editor</h4>
<p>Using WordPress 3.3 plugin develoeprs are able to customize the post editor or even add additional editors. This new feature will add additional functionality to wordpress themes and plugins.</p>
<h4>Content Tools</h4>
<ul>
<li>Better co-editing that releases post locks immediately</li>
<li>Don&#8217;t lose widgets when switching themes</li>
<li>Tumblr Importer </li>
</ul>
<h4>Check WordPress 3.3 Features Video</h4>
<p><embed type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.03" width="400" height="224" wmode="direct" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=I7NAw9Zk&amp;isDynamicSeeking=true"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-3-3-sonny-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook WordPress Plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/facebook-wordpress-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/facebook-wordpress-plugins/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:33:26 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fanbox]]></category>
		<category><![CDATA[fb]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[like box]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1535</guid>
		<description><![CDATA[Facebook is one of the most popular social networking websites. As facebook is becoming more popular all bloggers want to get benefits from the facebook. In last post we created a list of best google plus wordpress plugins now in this post we will create a list of all the best facebook wordpress plugins which [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook is one of the most popular social networking websites. As facebook is becoming more popular all bloggers want to get benefits from the facebook.<br />
In last post we created a list of <a title="Google Plus WordPress Plugins" href="http://www.snilesh.com/resources/wordpress/google-plus-wordpress-plugins/">best google plus wordpress plugins</a> now in this post we will create a list of all the best facebook wordpress plugins which you should have installed on your wordpress blog to promote your website and content.</p>
<h3><a title="Facebook Connect" href="http://www.sociable.es/2008/10/19/facebook-connector-wordpress-plugin-004/" target="_blank">Facebook Connect</a></h3>
<p>Facebook OpenGraph and Social plugins for WordPress (new Facebook Connect plugin).</p>
<h5>Facebook Connect Features</h5>
<ul>
<li>Open Graph Social Plugins (New!), like, activity and recommendations</li>
<li>Build a community</li>
<li>Login using your Facebook account</li>
<li>Send comments to Facebook profile feed</li>
<li>Invite your friends to the blog community</li>
<li>See last visitors</li>
<li>Facebook share counter</li>
<li>Facebook fan page widget</li>
<li>Facebook comments box</li>
<li>Facebook user email store</li>
</ul>
<h3><a href="http://wordpress.org/extend/plugins/facebook-fan-box/" title="Facebook Fan Box WordPress Plugin" target="_blank">Facebook Fan box</a></h3>
<p>Display a Facebook Fan Box on your blog. Put the Facebook Fan Box in your sidebar using the widget mode or call the function inside your template.</p>
<h3><a href="http://wordpress.org/extend/plugins/facebook-like-box-widget/" title="Facebook Like Box Widget" target="_blank">Facebook Like Box Widget</a></h3>
<p>Facebook Like Box Widget is a social plugin that enables Facebook Page owners to attract and gain Likes from their own website.</p>
<h3><a href="http://wordpress.org/extend/plugins/facebook-like-button/" title="Facebook Like Button" target="_blank">Facebook Like Button</a></h3>
<p>Using this plugin add the new Facebook Like button and Facebook Recommendations widget to your wordpress blog.</p>
<h3><a href="http://wordpress.org/extend/plugins/facebook-members/" title="Facebook Members" target="_blank">Facebook Members</a></h3>
<p>Facebook Members is a WordPres Social Plugin that enables Facebook Page owners to attract and gain Likes from their own website. It uses Facebook Like Box.</p>
<h3><a href="http://wordpress.org/extend/plugins/facebook-comments-for-wordpress/" title="Facebook Comments For WordPress" target="_blank">Facebook Comments for WordPress</a></h3>
<p>Allows your visitors to comment on posts using their Facebook profile. Supports custom styles, notifications, combined comment counts, recent comments.This plugin integrates the Facebook commenting system (new, old or both) right into your website. </p>
<h3><a href="http://wordpress.org/extend/plugins/facebook-share-statistics/" title="Facebook Share Statistics" target="_blank">Facebook Share Statistics</a></h3>
<p>This plugin shows informations about posts of your blog shared on Facebook, with statistics and charts about the number of &#8220;like&#8221;, comments and clicks received.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/facebook-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Plus WordPress Plugins</title>
		<link>http://www.snilesh.com/resources/wordpress/google-plus-wordpress-plugins/</link>
		<comments>http://www.snilesh.com/resources/wordpress/google-plus-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 09:53:51 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[google plus]]></category>
		<category><![CDATA[googleplus]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1509</guid>
		<description><![CDATA[As Google+ is publicly launched, so today in this post i will round-up post of Google+ and Google +1 plugins, widgets and add-ons available for wordpress blogs. Lets create one list of all the popular google plus wordpress plugins. You can use these plugins to add google + support on your wordpress blog. GoogleCards googleCards [...]]]></description>
			<content:encoded><![CDATA[<p>As Google+ is publicly launched, so today in this post i will round-up post of Google+ and Google +1 plugins, widgets and add-ons available for wordpress blogs. Lets create one list of all the <strong>popular google plus wordpress plugins</strong>.</p>
<p>You can use these plugins to add google + support on your wordpress blog.</p>
<h3><a href="http://wordpress.org/extend/plugins/googlecards/" title="Google Cards WordPress Plugin" target="_blank">GoogleCards</a></h3>
<p><div id="attachment_1510" class="wp-caption aligncenter" style="width: 236px"><a href="http://wordpress.org/extend/plugins/googlecards" title="Google Cards WordPress Plugin"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/googlecards.png" alt="Google Cards WordPress plugin" title="googlecards" width="226" height="191" class="size-full wp-image-1510" /></a><p class="wp-caption-text">Google Cards</p></div><br />
googleCards is a google+ wordpress plugin. It adds a widget to your blog that will display a link to your google+ profile so people can add you to a circle (follow you). It also displays your name, profile picture and the number of people who have you in circles.</p>
<h3><a href="http://wordpress.org/extend/plugins/scriptrr-google-profile/" title="Scriptrr Google + Profile widget" target="_blank">Scriptrr Google + Profile widget</a></h3>
<p><div id="attachment_1512" class="wp-caption aligncenter" style="width: 248px"><a href="http://wordpress.org/extend/plugins/scriptrr-google-profile/"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/scriptrr-google-profile.png" alt="Scriptrr Google + Profile widget" title="scriptrr-google-profile" width="238" height="299" class="size-full wp-image-1512" /></a><p class="wp-caption-text">Scriptrr Google + Profile widget</p></div><br />
Google Plus Profile Widget allows users to add plugin on their blog or website to invite visitors to new Google + Profile.</p>
<h3><a href="http://wordpress.org/extend/plugins/plus-one-button/" title="Google Plus One Button" target="_blank">Google Plus One Button</a></h3>
<p>Add Google +1 (Plus One) buttons throughout your website. Built using best practices in WordPress plugin development providing you a safe and secure way to add this feature to your posts and pages. There are many options available for customization.</p>
<h3><a href="http://www.snilesh.com/google-traffic-popup-download" title="Google Traffic Pop" target="_blank">Google Traffic Pop</a></h3>
<p><div id="attachment_1515" class="wp-caption aligncenter" style="width: 600px"><a href="http://www.snilesh.com/google-traffic-popup-download"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/google-traffic-pop.jpg" alt="Google Traffic Pop" title="google-traffic-pop" width="590" height="300" class="size-full wp-image-1515" /></a><p class="wp-caption-text">Google Traffic Pop</p></div><br />
Take full advantage of Google’s 500 million plus user base by giving your visitors an alternative to ads that also create value for you. By clicking +1 on your content they share it with everyone and they get to view your content uninterrupted: a great alternative to those who have content they cant charge for but want added value from it. </p>
<h3><a href="http://www.snilesh.com/google-plus-one-for-wordpress-download" title="Google +1 for WordPress" target="_blank">Google +1 For WordPress</a></h3>
<p><div id="attachment_1517" class="wp-caption aligncenter" style="width: 600px"><a href="http://www.snilesh.com/google-plus-one-for-wordpress-download"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/google-plus-one-for-wordpress.jpg" alt="Google Plus One For WordPress" title="google-plus-one-for-wordpress" width="590" height="300" class="size-full wp-image-1517" /></a><p class="wp-caption-text">Google Plus One For WordPress</p></div><br />
Google +1 for WordPress is the only full blown Google +1 plugin for WordPress. +1 Pro gives you support for both custom WordPress ShortCodes AND Template Tags! Add as many Google +1 buttons to your site as you want, anywhere you want!</p>
<h3><a href="http://www.snilesh.com/google-plus-widget-collection" title="Google + Widget Collections">Google+ Widget Collection</a></h3>
<p><div id="attachment_1519" class="wp-caption aligncenter" style="width: 600px"><a href="http://www.snilesh.com/google-plus-widget-collection"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/google-plus-widget-collection.jpg" alt="Google Plus Widget Collection" title="google-plus-widget-collection" width="590" height="300" class="size-full wp-image-1519" /></a><p class="wp-caption-text">Google Plus Widget Collection</p></div><br />
A collection of three Google+ widgets for WordPress :<br />
    People widget: allows you to show a Google Plus profile on your WordPress website (name, gender, relationship status, introduction, URLs, etc.)<br />
    PlusOne widget: display an official Google ‘+1’ button<br />
    Feed widget: allows you to show the latest activities from a Google Plus account<br />
    Each widget is fully configurable. API requests are stored in cache.</p>
<h3><a href="http://www.snilesh.com/wordpress-social-counter-plugins">WordPress Social Counter Plugins</a></h3>
<div id="attachment_1522" class="wp-caption aligncenter" style="width: 600px"><a href="http://www.snilesh.com/wordpress-social-counter-plugins"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/socialcounter_promo.jpg" alt="Social Counter WordPress Plugins" title="socialcounter_promo" width="590" height="300" class="size-full wp-image-1522" /></a><p class="wp-caption-text">Social Counter WordPress Plugins</p></div>
<h3><a href="http://www.snilesh.com/social-buttons-for-wordpress" title="Social Buttons For WordPress" target="_blank">Social Buttons Pro for WordPress</a></h3>
<p><div id="attachment_1524" class="wp-caption aligncenter" style="width: 600px"><a href="http://www.snilesh.com/social-buttons-for-wordpress"><img src="http://www.snilesh.com/wp-content/uploads/2011/10/social_buttons_for_wordpress.jpg" alt="Social Buttons For WordPress" title="social_buttons_for_wordpress" width="590" height="300" class="size-full wp-image-1524" /></a><p class="wp-caption-text">Social Buttons For WordPress</p></div><br />
Social Buttons Pro is the plugin that combines all of the features of the web’s most popular social buttons with an easy to use shortcode and template tag. It is one of the most popular <strong>google plus wordpress plugins</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/google-plus-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>wordpress display youtube video thumbnail</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-display-youtube-video-thumbnail/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-display-youtube-video-thumbnail/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 05:00:14 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[youtube shortcode]]></category>
		<category><![CDATA[youtube shortcode thumbnail]]></category>
		<category><![CDATA[youtube thumbnail]]></category>
		<category><![CDATA[youtube wp thumb]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1475</guid>
		<description><![CDATA[For displaying youtube video thumbnail on your website or wordpress blog either you have to use Youtube&#8217;s Video API or there is one simple technique to display youtube video thumbnail on your website. Display Youtube thumbnail on website http://img.youtube.com/vi/VIDEO_ID/#.jpg You can download thumbnail of any video from youtube using this url format. VIDEO_ID : is [...]]]></description>
			<content:encoded><![CDATA[<p>For displaying youtube video thumbnail on your website or wordpress blog either you have to use <a href="http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html" title="Youtube Video API" target="_blank">Youtube&#8217;s Video API</a> or there is one simple technique to display youtube video thumbnail on your website.</p>
<h3>Display Youtube thumbnail on website</h3>
<pre>

http://img.youtube.com/vi/VIDEO_ID/#.jpg
</pre>
<p>You can download thumbnail of any video from youtube using this url format.</p>
<blockquote><p>
   VIDEO_ID : is id of the video.<br />
    #.jpg : (1.jpg,2.jpg,or 3.jpg)
</p></blockquote>
<h3>Default Thumbnail Image, Full-Size (480×360)</h3>
<pre>

http://img.youtube.com/vi/rNWeBVBqo2c/0.jpg

Video Id= rNWeBVBqo2c
</pre>
<p><a href="http://www.youtube.com/watch?v=rNWeBVBqo2c"><img alt="" src="http://img.youtube.com/vi/rNWeBVBqo2c/0.jpg" title=" Incredible India" class="aligncenter" width="480" height="360" /></a></p>
<h3>1] Thumbnail Image, Small (120×90) </h3>
<pre>

http://img.youtube.com/vi/rNWeBVBqo2c/1.jpg

Video Id= rNWeBVBqo2c
</pre>
<p><a href="http://www.youtube.com/watch?v=rNWeBVBqo2c"><img alt="" src="http://img.youtube.com/vi/rNWeBVBqo2c/1.jpg" title=" Incredible India" class="aligncenter" /></a></p>
<h3>2] Thumbnail Image, Small (120×90) </h3>
<pre>

http://img.youtube.com/vi/rNWeBVBqo2c/2.jpg

Video Id= rNWeBVBqo2c
</pre>
<p><a href="http://www.youtube.com/watch?v=rNWeBVBqo2c"><img alt="" src="http://img.youtube.com/vi/rNWeBVBqo2c/2.jpg" title=" Incredible India" class="aligncenter" /></a></p>
<h2>WordPress Shortcode to Display Youtube Thumbnail</h2>
<p>Add following lines of codes in your themes functions.php file to add shorcode code</p>
<pre class="brush: php; title: ; notranslate">
/*
	Shortcode to display youtube thumbnail on your wordpress blog.
	Usage:
	[youtube_thumb id=&quot;VIDEO_ID&quot; img=&quot;0&quot; align=&quot;left&quot;]
	VIDEO_ID= Youtube video id
	img=0,1,2 or 3
	align= left,right,center
*/
function wp_youtube_video_thumbnail($atts) {
     extract(shortcode_atts(array(
	      'id' =&gt; '',
	      'img' =&gt; '0',
	      'align'=&gt;'left'
     ), $atts));
	$align_class='align'.$align;
	return '&lt;img src=&quot;http://img.youtube.com/vi/'.$id.'/'.$img.'.jpg&quot; alt=&quot;&quot; class=&quot;'.$align_class.'&quot; /&gt;';
}
add_shortcode('youtube_thumb', 'wp_youtube_video_thumbnail');
</pre>
<p>To display Youtube thumbnail on your blog add following shortcode in your wordpress posts/pages</p>
<p><strong>[youtube_thumb id="rNWeBVBqo2c" img="0" align="center"]</strong></p>
<p>which will display image like this<br />
<img alt="" src="http://img.youtube.com/vi/rNWeBVBqo2c/0.jpg" title=" Incredible India" class="aligncenter" width="480" height="360" /></p>
<p>id= Your Video Id<br />
img= 0,1,2,3 any value<br />
align= left,right or center</p>
<p>Some other Examples</p>
<p><strong>[youtube_thumb id="rNWeBVBqo2c" img="1" align="left"]</strong><br />
<strong>[youtube_thumb id="rNWeBVBqo2c" img="2" align="right"]</strong><br />
<strong>[youtube_thumb id="rNWeBVBqo2c" img="3" align="center"]</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-display-youtube-video-thumbnail/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Angry Anna Online Game</title>
		<link>http://www.snilesh.com/technology-tips/angry-anna-online-game/</link>
		<comments>http://www.snilesh.com/technology-tips/angry-anna-online-game/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 03:03:00 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Technology Tips]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1467</guid>
		<description><![CDATA[Game is developed by Noida based Geek Mentors Studio and is developed using HTML5. Angry Anna is inspired by the hugely popular Angry Birds game Play and enjoy angry anna game online]]></description>
			<content:encoded><![CDATA[<p>Game is developed by Noida based Geek Mentors Studio and is developed using HTML5. Angry Anna is inspired by the hugely popular Angry Birds game</p>
<p>Play and enjoy angry anna game online <img src='http://www.snilesh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><iframe src="http://e.gamesalad.com/play/27959" scrolling="no" width="480" height="353"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/technology-tips/angry-anna-online-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress dashboard Code Snippets</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-dashboard-code-snippets/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-dashboard-code-snippets/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 15:05:19 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=1428</guid>
		<description><![CDATA[WordPress Dashboard is the first screen you see when you login to your wordpres blog. Using WordPress Dashboard you can control your posts,comments,users. In this post i added some code snippets which are useful to arrange,style or add new dashboard widgets. Change WordPress dashboard colors If you want to change your dashboard colors then add [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress Dashboard is the first screen you see when you login to your wordpres blog. Using WordPress Dashboard you can control your posts,comments,users. In this post i added some code snippets which are useful to arrange,style or add new dashboard widgets.</p>
<h2>Change WordPress dashboard colors</h2>
<p>If you want to change your dashboard colors then add following code in your  theme&#8217;s functions.php file</p>
<pre class="brush: php; title: ; notranslate">
function custom_colors() {
   echo '&lt;style type=&quot;text/css&quot;&gt;#wphead{background:#069}&lt;/style&gt;';
}

add_action('admin_head', 'custom_colors');
</pre>
<p><strong><a href="http://hankis.me/modifying-the-wordpress-dashboard" title="hankis.me" target="_blank">Source</a></strong></p>
<h2>Add Custom Dashboard widgets to WordPress dashboard</h2>
<p>If you want to add custom dashboard widgets then add following lines of code in your theme&#8217;s functions.php Using this code snippet you can add your own wordpress dashboard widgets.</p>
<pre class="brush: php; title: ; notranslate">
function example_dashboard_widget_function() {
	// Display whatever it is you want to show
	echo &quot;Hello World, I'm a great Dashboard Widget&quot;;
} 

// Create the function use in the action hook
function example_add_dashboard_widgets() {
	wp_add_dashboard_widget('example_dashboard_widget', 'Example Dashboard Widget', 'example_dashboard_widget_function');
}
// Hoook into the 'wp_dashboard_setup' action to register our other functions
add_action('wp_dashboard_setup', 'example_add_dashboard_widgets' );
</pre>
<p><strong><a href="http://codex.wordpress.org/Function_Reference/wp_add_dashboard_widget" title="Wordpress Codex" target="_blank">Source : Wp Codex</a></strong><br />
<strong><a href="http://hankis.me/modifying-the-wordpress-dashboard" title="hankis.me" target="_blank">Source</a></strong></p>
<h2>Remove dashboard widgets</h2>
<p>If you don&#8217;t want some wordpress widgets on your dashboard then you can remove them from your dashboard using following code snippet. Add following lines of code in your theme&#8217;s functions.php file</p>
<pre class="brush: php; title: ; notranslate">
function example_remove_dashboard_widgets() {
	// Globalize the metaboxes array, this holds all the widgets for wp-admin
 	global $wp_meta_boxes;

	// Remove the incomming links widget
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);	

	// Remove right now
	unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
	unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}

// Hoook into the 'wp_dashboard_setup' action to register our function
add_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );
</pre>
<p><strong>Source: <a href="http://hankis.me/modifying-the-wordpress-dashboard" title="hankis.me" target="_blank">hankis.me</a></strong></p>
<h3>Disable the please update now message in WP dashboard</h3>
<p>If you don&#8217;t want to display update notice message on your wordpress blog then add following lines of codes in functions.php file.</p>
<pre class="brush: php; title: ; notranslate">
if ( !current_user_can( 'edit_users' ) ) {
  add_action( 'init', create_function( '$a', &quot;remove_action( 'init', 'wp_version_check' );&quot; ), 2 );
  add_filter( 'pre_option_update_core', create_function( '$a', &quot;return null;&quot; ) );
}
</pre>
<h3>Add your own wordpress dashboard logo</h3>
<p>If you want to add your own dashboard logo then add following lines of code in functions.php</p>
<pre class="brush: php; title: ; notranslate">
add_action('admin_head', 'my_custom_logo');

function my_custom_logo() {
   echo '
      &lt;style type=&quot;text/css&quot;&gt;
         #header-logo { background-image: url('.get_bloginfo('template_directory').'/images/your-logo.jpg) !important; }
      &lt;/style&gt;
   ';
}
</pre>
<p>Replace your-logo.jpg with your logo image name. and upload that inside images folder of your theme.<br />
<strong>Source: <a href="http://www.smashingmagazine.com/2009/12/14/advanced-power-tips-for-wordpress-template-developers-reloaded/" title="Smashing Magazine" target="_blank">Smasing Magazine</a>.</strong></p>
<h3>WordPress Remove menus in wp dashboard</h3>
<p>Following code will remove all the menus which are added in $restricted array</p>
<pre class="brush: php; title: ; notranslate">
function remove_menus () {
global $menu;
	$restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Comments'));
	end ($menu);
	while (prev($menu)){
		$value = explode(' ',$menu[key($menu)][0]);
		if(in_array($value[0] != NULL?$value[0]:&quot;&quot; , $restricted)){unset($menu[key($menu)]);}
	}
}
add_action('admin_menu', 'remove_menus');
</pre>
<p><strong>Source: <a href="http://hungred.com/how-to/remove-wordpress-admin-menu-affecting-wordpress-core-system/" title="Hungred" target="_blank">hungred</a> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-dashboard-code-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

