<?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>SNilesh.com -:-  Nilesh Shiragave</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>Fri, 03 Sep 2010 13:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress Change logo on wp-login page</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-change-logo-on-wp-login-page/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-change-logo-on-wp-login-page/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 13:02:30 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=797</guid>
		<description><![CDATA[If you want to change default wordpress logo on the wp-login.php page then you can change wordpress logo by your logo by just adding following lines in your theme's function php files.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-change-logo-on-wp-login-page%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-change-logo-on-wp-login-page%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.snilesh.com/wp-content/uploads/2010/09/wordpress_login_page.jpg" alt="" title="wordpress_login_page" width="341" height="300" class="aligncenter size-full wp-image-798" /><br />
If you want to change default wordpress logo on the wp-login.php page then you can change wordpress logo by your logo by just adding following lines in your theme&#8217;s function php files.</p>
<pre class="brush: php;">
function my_custom_login_logo() {
    echo '&lt;style type=&quot;text/css&quot;&gt;
        h1 a { background-image:url('.get_bloginfo('template_url').'/images/login-logo.png) !important; }
    &lt;/style&gt;';
}

add_action('login_head', 'my_custom_login_logo');
</pre>
<p>You have to upload your logo in your theme&#8217;s directory with name &#8220;<strong>login-logo.png</strong>&#8221;</p>
<h3>Source</h3>
<ul>
<li><a href="http://tarqy.com/mengganti-logo-wordpress-pada-halaman-login.html"> Rami. </a></li>
<li><a href="http://www.wprecipes.com/customize-wordpress-login-logo-without-a-plugin" title="Post Pic<br />
Customize WordPress login logo without a plugin<br />
">www.wprecipes.com</a></li>
</ul>
<p>You </p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-change-logo-on-wp-login-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress alternate colors to page links</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-alternate-colors-to-page-links/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-alternate-colors-to-page-links/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 15:53:06 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=794</guid>
		<description><![CDATA[Using following code you can apply two colors alternatively to the page links. just edit the colors to apply different styles. ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-alternate-colors-to-page-links%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-alternate-colors-to-page-links%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Using following code you can apply two colors alternatively to the page links. just edit the colors to apply different styles. </p>
<pre class="brush: php;">
&lt;ul class=&quot;page_navigation&quot;&gt;
&lt;?php
$pages = get_pages(array('sort_column'=&gt;'menu_order'));
$totalpages=count($pages);
$count=0;
foreach ($pages as $pagg) {
$count++;
if($count%2!=0)
{
echo '&lt;li class=&quot;odd&quot;&gt;';
}
else
{
echo '&lt;li class=&quot;even&quot;&gt;';
}
echo '&lt;a href=&quot;'.get_permalink($pagg-&gt;ID).'&quot;&gt;';
echo $pagg-&gt;post_title;
echo '&lt;/a&gt;&lt;/li&gt;';
}
?&gt;
&lt;/ul&gt;
&lt;style type=&quot;text/css&quot;&gt;
.page_navigation li.odd a
{
	color:red;
}
.page_navigation li.even a
{
	color:blue;
}
&lt;/style&gt;
</pre>
<p>And if you want to display child pages of a specific page then just replace line</p>
<pre class="brush: php;">
$pages = get_pages(array('sort_column'=&gt;'menu_order','child_of'=&gt;8));
</pre>
<p>change 8 with parent page id and display child pages of that parent.</p>
<p>and if you want to display child pages of current page then just add $post->ID instead of the page number.<br />
like</p>
<pre class="brush: php;">
$pages = get_pages(array('sort_column'=&gt;'menu_order','child_of'=&gt;$post-&gt;ID));
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-alternate-colors-to-page-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Display Author page link</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-display-author-page-link/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-display-author-page-link/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:54:58 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=792</guid>
		<description><![CDATA[Following code is used to create authors page link without displaying the author name publicly. You have to use this code inside wordpress the_loop. &#60;?php $user_info = get_the_author_meta('user_nicename',$post-&#62;post_author); $author_url=get_author_posts_url($post-&#62;post_author,$user_info); ?&#62; &#60;p&#62;&#60;a href=&#34;&#60;?php echo $author_url; ?&#62;&#34; title=&#34;View All posts By this author&#34;&#62;View All posts By this author&#60;/a&#62;&#60;/p&#62;]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-display-author-page-link%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-display-author-page-link%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Following code is used to create authors page link without displaying the author name publicly.<br />
You have to use this code inside wordpress <a href="http://codex.wordpress.org/The_Loop">the_loop</a>.</p>
<pre class="brush: php;">
&lt;?php
$user_info = get_the_author_meta('user_nicename',$post-&gt;post_author);
$author_url=get_author_posts_url($post-&gt;post_author,$user_info);
?&gt;
&lt;p&gt;&lt;a href=&quot;&lt;?php echo $author_url; ?&gt;&quot; title=&quot;View All posts By this author&quot;&gt;View All posts By this author&lt;/a&gt;&lt;/p&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-display-author-page-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery sort / order table data</title>
		<link>http://www.snilesh.com/resources/jquery/jquery-sort-order-table-data/</link>
		<comments>http://www.snilesh.com/resources/jquery/jquery-sort-order-table-data/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:30:19 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=784</guid>
		<description><![CDATA[This plugin allows you to animatedly sort a table based on a column&#8217;s &#60;td&#62;s, or on the content/value of a child/descendant element within those &#60;td&#62;s. The various &#60;td&#62;s fly to their new homes, giving a nice effect. It also supports sorting on REGEXP matches. You can also control whether row relationships are maintained, whether it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fjquery%2Fjquery-sort-order-table-data%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fjquery%2Fjquery-sort-order-table-data%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>This plugin allows you to animatedly sort a table based on a column&#8217;s &lt;td&gt;s, or on the content/value of a child/descendant element within those &lt;td&gt;s. The various &lt;td&gt;s fly to their new homes, giving a nice effect. It also supports sorting on REGEXP matches. You can also control whether row relationships are maintained, whether it sorts on ascii or numeric and ascending or descending.</p>
<div class="option_div_1">
<div class="dm">
<a href="http://www.mitya.co.uk/scripts/Animated-table-sort-REGEXP-friendly-111" title="Jquery sort / order table data" class="demo_new" target="_blank"></a></div>
<div class="dw">
<a href="http://www.mitya.co.uk/scripts/Animated-table-sort-REGEXP-friendly-111" title="Jquery sort / order table data" class="view_new" target="_blank"></a></div>
</div><div class="border_p"></div>
<p><a href="http://www.mitya.co.uk/scripts/Animated-table-sort-REGEXP-friendly-111"><img src="http://www.snilesh.com/wp-content/uploads/2010/08/jquery_table.jpg" alt="" title="jquery_table" width="457" height="300" class="aligncenter size-full wp-image-785" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/jquery/jquery-sort-order-table-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gvChart: Make Google Charts With HTML Tables</title>
		<link>http://www.snilesh.com/resources/jquery/gvchart-make-google-charts-with-html-tables/</link>
		<comments>http://www.snilesh.com/resources/jquery/gvchart-make-google-charts-with-html-tables/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:21:49 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=780</guid>
		<description><![CDATA[gvChart is a jQuery Plugin, that create charts and graphs (Area, Line, Bar, Column and Pie) using Google Chart Tools / Interactive Charts (aka Visualization API). Its main features is the use of HTML tables as data source for creating charts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fjquery%2Fgvchart-make-google-charts-with-html-tables%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fjquery%2Fgvchart-make-google-charts-with-html-tables%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.ivellios.toron.pl/technikalia/2010/06/22/gvchart-plugin-jquery-with-google-charts/" target="_blank">gvChart</a> is a jQuery Plugin, that create charts and graphs (Area, Line, Bar, Column and Pie) using <a href="http://code.google.com/apis/visualization/interactive_charts.html" target="_blank">Google Chart Tools / Interactive Charts (aka Visualization API)</a>. Its main features is the use of HTML tables as data source for creating charts.<br />
<a href="http://www.ivellios.toron.pl/technikalia/2010/06/22/gvchart-plugin-jquery-with-google-charts/"><img src="http://www.snilesh.com/wp-content/uploads/2010/08/gdchart.jpg" alt="" title="gdchart" width="500" height="250" class="aligncenter size-full wp-image-781" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/jquery/gvchart-make-google-charts-with-html-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorials July 2010</title>
		<link>http://www.snilesh.com/resources/tutorials-july-2010/</link>
		<comments>http://www.snilesh.com/resources/tutorials-july-2010/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:14:06 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=778</guid>
		<description><![CDATA[All the latest jquery,html5,css3 tutorials Showing Off bit.ly Clicks of Your Posts With jQuery By Mike More, July 29th, 2010 Site: AEXT Thumbnails Navigation Gallery with jQuery By Mary Lou, July 29th, 2010 Site: Codrops Building a custom HTML5 video player with CSS3 and jQuery By Cristian-Ionut Colceriu, July 28th, 2010 Site: Dev Opera Start [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Ftutorials-july-2010%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Ftutorials-july-2010%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>All the latest jquery,html5,css3 tutorials</p>
<h2><a href="http://aext.net/2010/07/showing-off-bit-ly-clicks-of-your-posts-with-jquery/" target="_blank">Showing Off bit.ly Clicks of Your Posts With jQuery</a></h2>
<p>
By Mike More, July 29th, 2010<br />
Site: AEXT</p>
<h2><a href="http://tympanus.net/codrops/2010/07/29/thumbnails-navigation-gallery/" target="_blank">Thumbnails Navigation Gallery with jQuery</a></h2>
<p>
By Mary Lou, July 29th, 2010<br />
Site: Codrops</p>
<h2><a href="http://dev.opera.com/articles/view/custom-html5-video-player-with-css3-and-jquery/" target="_blank">Building a custom HTML5 video player with CSS3 and jQuery</a></h2>
<p>
By Cristian-Ionut Colceriu, July 28th, 2010<br />
Site: Dev Opera</p>
<h2><a href="http://www.leemunroe.com/css3-animations/" target="_blank">Start Experimenting With CSS3 Keyframe Animations</a></h2>
<p>
By Lee Munroe, July 28th, 2010<br />
Site: Lee Munroe</p>
<h2><a href="http://www.useragentman.com/blog/2010/07/27/cross-browser-html5-forms-using-modernizr-webforms2-and-html5widgets/" target="_blank">Creating Cross Browser HTML5 Forms Now, Using modernizr, webforms2 and html5Widgets</a></h2>
<p>
By Zoltan, July 27th, 2010<br />
Site: User Agent Man</p>
<h2><a href="http://net.tutsplus.com/tutorials/wordpress/20-steps-to-a-flexible-and-secure-wordpress-installation/" target="_blank">20 Steps to a Flexible and Secure WordPress Installation</a></h2>
<p>
By Karthik Viswanathan, July 26th, 2010<br />
Site: Nettuts+</p>
<h2><a href="http://tutorialzine.com/2010/07/youtube-api-custom-player-jquery-css/" target="_blank">Making a Custom YouTube Video Player With YouTube’s APIs</a></h2>
<p>
By Martin Angelov, July 23rd, 2010<br />
Site: Tutorialzine</p>
<h2><a href="http://www.smashingmagazine.com/2010/07/21/designing-style-guidelines-for-brands-and-websites/" target="_blank">Designing Style Guidelines For Brands And Websites</a></h2>
<p>
By Kat Neville, July 21st, 2010<br />
Site: Smashing Magazine</p>
<h2><a href="http://net.tutsplus.com/tutorials/wordpress/creating-custom-fields-for-attachments-in-wordpress/" target="_blank">Creating Custom Fields for Attachments in WordPress</a></h2>
<p>
By Andy Blackwell, July 20th, 2010<br />
Site: Nettuts+</p>
<h2><a href="http://www.vcarrer.com/2010/07/bulletproof-css3-media-queries.html" target="_blank">Bulletproof CSS3 Media Queries</a></h2>
<p>
By Vladimir Carrer, July 20th, 2010<br />
Site: Carrer Web Log</p>
<h2><a href="http://www.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/" target="_blank">How To Use CSS3 Media Queries To Create a Mobile Version of Your Website</a></h2>
<p>
By Rachel Andrew, July 19th, 2010<br />
Site: Smashing Magazine</p>
<h2><a href="http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output" target="_blank">Improve your WordPress Navigation Menu Output</a></h2>
<p>
By Christian Budschedl, July 18th, 2010<br />
Site: Kriesi</p>
<h2><a href="http://css-tricks.com/textarea-tricks/" target="_blank">Textarea Tricks</a></h2>
<p>
By Chris Coyier, July 16th, 2010<br />
Site: CSS-Tricks</p>
<h2><a href="http://tympanus.net/codrops/2010/07/16/slide-down-box-menu/" target="_blank">Slide Down Box Menu with jQuery and CSS3</a></h2>
<p>
By Mary Lou, July 16th, 2010<br />
Site: Codrops</p>
<h2><a href="http://sixrevisions.com/web-standards/5-web-files-that-will-improve-your-website/" target="_blank">5 Web Files That Will Improve Your Website</a></h2>
<p>
By Alexander Dawson, July 15th, 2010<br />
Site: Six Revisions</p>
<h2><a href="http://net.tutsplus.com/tutorials/other/how-to-create-a-web-service-in-a-matter-of-minutes/" target="_blank">How to Create a Web Service in a Matter of Minutes</a></h2>
<p>
By Christian Heilmann, July 14th, 2010<br />
Site: Nettuts+</p>
<h2><a href="http://www.position-absolute.com/articles/optimizing-javascriptjquery-loading-time-a-beginners-guide/" target="_blank">Optimizing JavaScript/jQuery Loading Time, a Beginner’s Guide</a></h2>
<p>
By Cedric Dugas, July 13th, 2010<br />
Site: Position Absolute</p>
<h2><a href="http://digwp.com/2010/07/wordpress-security-lockdown/" target="_blank">WordPress Security Lockdown</a></h2>
<p>
By Jeff Starr, July 12th, 2010<br />
Site: Digging into WordPress</p>
<h2><a href="http://sixrevisions.com/web_design/the-960-grid-system-made-easy/" target="_blank">The 960 Grid System Made Easy</a></h2>
<p>
By Joshua Johnson, July 12th, 2010<br />
Site: Six Revisions</p>
<h2><a href="http://net.tutsplus.com/tutorials/php/object-oriented-php-for-beginners/" target="_blank">Object-Oriented PHP for Beginners</a></h2>
<p>
By Jason Lengstorf, July 8th, 2010<br />
Site: Nettuts+</p>
<h2><a href="http://www.drdobbs.com/web-development/225702544" target="_blank">HTML5 Web Storage</a></h2>
<p>
By Peter Lubbers and Brian Albers, July 7th, 2010<br />
Site: Dr Dobbs</p>
<h2><a href="http://net.tutsplus.com/articles/general/a-beginners-guide-to-design-patterns/" target="_blank">A Beginner’s Guide to Design Patterns</a></h2>
<p>
By Nikko Bautista, July 7th, 2010<br />
Site: Nettuts+</p>
<h2><a href="http://www.alistapart.com/articles/supersize-that-background-please/" target="_blank">Supersize that Background, Please!</a></h2>
<p>
By Bobby van der Sluis, July 6th, 2010<br />
Site: A List Apart</p>
<h2><a href="http://www.sitepoint.com/blogs/2010/07/06/how-to-use-the-new-custom-menu-feature-in-wordpress-3-0/" target="_blank">How to Use the New Custom Menu Feature in WordPress 3.0</a></h2>
<p>
By Louis Simoneau, July 6th, 2010<br />
Site: SitePoint</p>
<h2><a href="http://active.tutsplus.com/tutorials/silverlight/an-introduction-to-microsoft-silverlight-4-part-1/" target="_blank">An Introduction to Microsoft Silverlight 4 – Part 1</a>, <a href="http://active.tutsplus.com/tutorials/silverlight/an-introduction-to-microsoft-silverlight-4-part-2/" target="_blank">Part 2</a></h2>
<p>
By Mike Taulty, July 5th, 2010<br />
Site: Activetuts+</p>
<h2><a href="http://tympanus.net/codrops/2010/07/04/image-highlighting-preview/" target="_blank">Image Highlighting and Preview with jQuery</a></h2>
<p>
By Mary Lou, July 4th, 2010<br />
Site: Codrops</p>
<h2><a href="http://www.1stwebdesigner.com/tutorials/create-stay-on-top-menu-css3-jquery/" target="_blank">How to Create a “Stay-On-Top” Menu with CSS3 and jQuery</a></h2>
<p>
By Irina Borozan, July 1st, 2010<br />
Site: 1stwebdesigner</p>
</ul>
<p>So which tutorials you found most useful. Also feel free to recommend any good article that we may have missed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/tutorials-july-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tutorials 2010</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-tutorials-2010/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-tutorials-2010/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 16:54:48 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=776</guid>
		<description><![CDATA[In this post i included all the latest wordpress tutorials and hacks. With latest wordpress 3.0 . 1. How to create a built-in contact form for your WordPress theme. Many WordPress plugins can add a contact form to your blog, but a plugin is not necessary. In this tutorial, I’m going to show you how [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tutorials-2010%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tutorials-2010%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>In this post i included all the latest wordpress tutorials and hacks. With latest wordpress 3.0 . </p>
<h2>1. <a href="http://www.catswhocode.com/blog/how-to-create-a-built-in-contact-form-for-your-wordpress-theme">How to create a built-in contact form for your WordPress theme</a>.</h2>
<p>
Many WordPress plugins can add a contact form to your blog, but a plugin is not necessary. In this tutorial, I’m going to show you how you can create a built-in contact form for your WordPress theme.</p>
<p>
<h2>2. <a href="http://www.catswhocode.com/blog/how-to-create-a-side-blog-with-wordpress-3-0">How to create a side blog with WordPress 3.0</a>.</h2>
<p>
In this tutorial, I’ll show you how to create a side blog listing products using the WordPress 3.0 custom post type feature.</p>
<p>
<h2>3. <a href="http://www.tuttoaster.com/how-to-use-style-and-implement-wordpress-shortcodes/">How To Use, Style And Implement WordPress Shortcodes</a>.</h2>
<p>
Wordpress shortcode API is a powerful function which was introduced from version 2.5, it’s just a simple set of functions for creating macro codes in post content. If you’ve developed a Vbulletin forum before, you would have been familiar with the shortcode (something called BBCode) but the WordPress users maybe not. In this article, I would like to show you how to create and use shortcodes, in addition, I will show you some creative examples of using shortcode in WordPress blog.</p>
<p>
<h2>4. <a href="http://themethesis.com/tutorials/show-retweets-without-plugin-wordpress/">Show Number Of Retweets In WordPress Without A Plugin</a>.</h2>
<p>
Social proof is a powerful thing. Showing how many people are talking about your article on Twitter can encourage more people to talk about it, that’s a fact. Humans are silly and trusting this way.<br />
The way most people go about it is by installing some sort of a widget or plugin. Now you say, “But Matt, why wouldn’t I want to use a plugin!? Plugins are awesome!” </p>
<p>
<h2>5. <a href="http://www.vooshthemes.com/blog/wordpress-tip/create-a-professional-portfolio-using-wordpress-3-0-custom-post-types/">Create A Professional Portfolio Using WordPress 3.0 Custom Post Types</a>.</h2>
<p>
In this tutorial I’ll show you how to make use of the new custom post functionality to create a portfolio for your WordPress site. </p>
<p>
<h2>6. <a href="http://themethesis.com/tutorials/jquery-wordpress-archives/">Create a Powerful jQuery-Powered Archives Page in WordPress</a>.</h2>
<p>
Here you’ll learn how to add an archives page to WordPress  that not only shows a monthly archive, but also your categories, every post you’ve written, your most popular posts, and even a search box, using jQuery to keep everything organized and easy to navigate.</p>
<p>
<h2>7. <a href="http://themethesis.com/tutorials/styling-specific-wordpress-posts/">How to Style Individual WordPress Posts in Seconds</a>.</h2>
<p>
With art directed posts being all the rage now, everybody wants to style everything. There are plugins and custom fields and all sorts of ways to do this, but WordPress already has two not-so-popular functions that allow you to style specific posts or pages.</p>
<p>
<h2>8. <a href="http://www.dynamicwp.net/articles-and-tutorials/how-to-create-a-redirect-page-template-in-wordpress/">How to Create a Redirect Page Template in WordPress</a>.</h2>
<p>
In this tutorial we will show you how you can create a redirect page template in WordPress using the custom page template snippet.</p>
<p>
<h2>9. <a href="http://www.dynamicwp.net/articles-and-tutorials/how-to-code-the-mockup-search-box-design-from-psd-to-wordpress-theme/">How To Code The Mockup Search Box Design from PSD to WordPress Theme</a>.</h2>
<p>
A couple of weeks back we went through the process of creating a search box design concept in Photoshop. The tutorial covered the process of designing our search box in photshop to an inspiratian for creating more color schemes. Now, let’s take the design to apply a complete mockup in wordpress theme.
</p>
<h3 style="border-bottom: 1px solid rgb(116, 117, 117); padding-bottom: 10px;">About WordPress 3.0</h3>
<p></p>
<h2>10. <a href="http://wordpress.org/development/2010/06/thelonious/">WordPress 3.0 “Thelonious”</a></h2>
<p>
Arm your vuvuzelas: WordPress 3.0, the thirteenth major release of WordPress and the culmination of half a year of work by 218 contributors, is now available for download (or upgrade within your dashboard). Major new features in this release include a sexy new default theme called Twenty Ten. </p>
<p>
<h2>11. <a href="http://www.webdesignerdepot.com/2010/06/wordpress-3-0-upgrade-what-to-expect/">WordPress 3.0 Upgrade: What to Expect</a></h2>
<p>
With virtually any WordPress release (or the release of any open-source software, for that matter), there are bound to be bugs. And in virtually every case, easy fixes have already been found. Of course, there are also a number of things you can do prior to upgrading to prevent problems. Read on for some tips, and some of the common bugs you might run into.</p>
<p>
<h2>12. <a href="http://designm.ag/resources/highlights-of-wordpress-3-0/">Highlights of WordPress 3.0!</a>.</h2>
<p>
Wordpress 3.0 was released to the public June 17th with a mountain of changes to it’s previous version.  I have compiled my personal favorites below.   For those of you not fully aware of the recent changes to WordPress, check out my favorites below:</p>
<p>
<h2>13. <a href="http://www.onextrapixel.com/2010/06/21/8-new-exciting-wordpress-3-0-features/">8 New Exciting WordPress 3.0 Features</a>.</h2>
<p>
This WordPress 3.0 release is packed with tons of exciting features, like custom post type, better menu management, editor style  and many more. It also comes with a new default theme – TwentyTen, that is compatible with most of the new features. Below I will highlight some of the keys features and how to implement them.</p>
<p>
<h2>14. <a href="http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/">The Essential Guide to WordPress 3.0 Custom Taxonomies</a>.</h2>
<p>
In general, taxonomies are used to arrange, classify and group things. By default, Taxonomies in WordPress are tags and categories that WordPress is using for the posts.  Apart from these two, WordPress makes it possible for theme developers to create their own taxonomies which are created within the functions.php theme file. This is what we are going to cover today. We will learn how to work with Custom WordPress taxonomies.</p>
<p>
<h2>15. <a href="http://www.webdesignerdepot.com/2010/06/wordpress-from-kubrick-to-twenty-ten/">WordPress: From Kubrick to Twenty Ten</a>.</h2>
<p>
Kubrick, the default theme for WordPress since 2005, got many Web and open-source enthusiasts through some pretty tough times. Developers have modified it, bloggers have learned HTML and CSS on it, and designers have made it their go-to template for designing blogs of all sizes for clients.<br />
Enter “Twenty Ten” the new default theme for WordPress 3.0, which is scheduled for an imminent release. Not only does it address general changes in Web standards and style guides, it takes into account the clamoring of designers who love WordPress but have had a hard time applying new principles to an older theme.</p>
<p>
<h2>16. <a href="http://carsonified.com/blog/design/wordpress-3-0-for-web-designers/">WordPress 3.0 for Web Designers</a>.</h2>
<p>
what’s new in the upcoming 3.0 release of WordPress and quizzes a number of web designers on their thoughts on the new features.</p>
<p>
<h2>17. <a href="http://www.cherrysave.com/web-design/wordpress-3-0-released-the-top-7-new-features/">WordPress 3.0 Released: The Top 7 New Features</a>.</h2>
<p>
WordPress 3.0 incorporates quite a few new features, including custom post types, a URL shortener, and a new theme. You’ll find plenty of lists like this across the web, not least of which being the official changelog  at the WordPress codex. The problem is that most of these lists don’t explain how to use the new features, and many are not self-explanatory or enabled by default. This is my attempt to remedy that. Here’s a list of the top seven most compelling features that could change the way you blog.</p>
<p>
<h2>18. <a href="http://www.w3avenue.com/2010/06/05/wordpress-30-features-every-theme-developer-should-know/">WordPress 3.0 Features Every Theme Developer Should Know</a>.</h2>
<p>
This release will mark a new milestone in WordPress history, with several exciting new features including: multiple sites, custom menus, custom post types and a new default theme. This article highlights important enhancements in WordPress 3.0 and provide links to some really useful resources.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-tutorials-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP calculate age from date of birth</title>
		<link>http://www.snilesh.com/resources/php/php-calculate-age-from-date-of-birth/</link>
		<comments>http://www.snilesh.com/resources/php/php-calculate-age-from-date-of-birth/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 07:28:27 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=771</guid>
		<description><![CDATA[Code added to this post will calculate date difference in days, months, years  format. So using this code you can calculate age by sending birth date as parameter. Or you can calculate difference between today’s date and any date in past.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fphp%2Fphp-calculate-age-from-date-of-birth%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fphp%2Fphp-calculate-age-from-date-of-birth%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Code added to this post will calculate date difference in days, months, years  format. So using this code you can calculate age by sending birth date as parameter. Or you can calculate difference between today’s date and any date in past.</p>
<pre class="brush: php;">

function get_Age_difference($start_date,$end_date){
	list($start_year,$start_month,$start_date) = split('-', $start_date);
	list($current_year,$current_month,$current_date) = split('-', $end_date);
     $result = '';

    /** days of each month **/

    for($x=1 ; $x&lt;=12 ; $x++){

        $dim[$x] = date('t',mktime(0,0,0,$x,1,date('Y')));

    }

    /** calculate differences **/

    $m = $current_month - $start_month;
    $d = $current_date - $start_date;
    $y = $current_year - $start_year;

    /** if the start day is ahead of the end day **/

    if($d &lt; 0) {

        $today_day = $current_date + $dim[$current_month];
        $today_month = $current_month - 1;
        $d = $today_day - $start_date;
        $m = $today_month - $start_month;
        if(($today_month - $start_month) &lt; 0) {

            $today_month += 12;
            $today_year = $current_year - 1;
            $m = $today_month - $start_month;
            $y = $today_year - $start_year;

        }

    }

    /** if start month is ahead of the end month **/

        if($m &lt; 0) {

        $today_month = $current_month + 12;
        $today_year = $current_year - 1;
        $m = $today_month - $start_month;
        $y = $today_year - $start_year;

		}

    /** Calculate dates **/

    if($y &lt; 0) {

        die(&quot;Start Date Entered is a Future date than End Date.&quot;);

    } else {

        switch($y) {

            case 0 : $result .= ''; break;
            case 1 : $result .= $y.($m == 0 &amp;&amp; $d == 0 ? ' year old' : ' year'); break;
            default : $result .= $y.($m == 0 &amp;&amp; $d == 0 ? ' years old' : ' years');

        }

        switch($m) {

            case 0: $result .= ''; break;
            case 1: $result .= ($y == 0 &amp;&amp; $d == 0 ? $m.' month old' : ($y == 0 &amp;&amp; $d != 0 ? $m.' month' : ($y != 0 &amp;&amp; $d == 0 ? ' and '.$m.' month old' : ', '.$m.' month'))); break;
            default: $result .= ($y == 0 &amp;&amp; $d == 0 ? $m.' months old' : ($y == 0 &amp;&amp; $d != 0 ? $m.' months' : ($y != 0 &amp;&amp; $d == 0 ? ' and '.$m.' months old' : ', '.$m.' months'))); break;

        }

        switch($d) {

            case 0: $result .= ($m == 0 &amp;&amp; $y == 0 ? 'Today' : ''); break;
            case 1: $result .= ($m == 0 &amp;&amp; $y == 0 ? $d.' day old' : ($y != 0 || $m != 0 ? ' and '.$d.' day old' : '')); break;
            default: $result .= ($m == 0 &amp;&amp; $y == 0 ? $d.' days old' : ($y != 0 || $m != 0 ? ' and '.$d.' days old' : ''));

        }

    }

    return $result;

}

/* Call this function as */
$date_difference= get_Age_difference(&quot;2004-10-10&quot;,date(&quot;Y-m-d&quot;)); /* get_Age_difference(Birthdate,Todays_date) */
echo $date_difference;
</pre>
<pre class="brush: xml;">
Above code will output difference in format like
5 years, 10 months and 13 days old
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/php/php-calculate-age-from-date-of-birth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login Multiple Gtalk Accounts Windows</title>
		<link>http://www.snilesh.com/technology-tips/login-multiple-gtalk-accounts-windows/</link>
		<comments>http://www.snilesh.com/technology-tips/login-multiple-gtalk-accounts-windows/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 06:42:14 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Technology Tips]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=763</guid>
		<description><![CDATA[Most of us have multiple gmail ids as we want separate gmail account for freelance or work and a personal account to chat with friends. To access these accounts at the same time we have to either open them in separate browsers like one account in google chrome and other one in mozilla or the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Ftechnology-tips%2Flogin-multiple-gtalk-accounts-windows%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Ftechnology-tips%2Flogin-multiple-gtalk-accounts-windows%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Most of us have multiple gmail ids as we want separate gmail account for freelance or work and a personal account to chat with friends.</p>
<p>To access these accounts at the same time we have to either open them in separate browsers like one account in google chrome and other one in mozilla or the other solution is to use <a href="http://www.meebo.com/">meebo</a>.</p>
<p>If you are working on windows then there is a small trick to logging multiple accounts at same time using Google Gtalk.</p>
<p>Just you have to right click on the gtalk shortcut go to properties, You will see window like this</p>
<p><img src="http://www.snilesh.com/wp-content/uploads/2010/08/gtalk_properties.jpg" alt="" title="gtalk_properties" width="377" height="530" class="aligncenter size-full wp-image-764" /></p>
<p>You have to add <strong>-nomutex</strong> at the end of target.</p>
<p>Just Click Apply and Ok. </p>
<p>Just double click on gtalk and open as many as gtalk windows you want.</p>
<p>like </p>
<p><img src="http://www.snilesh.com/wp-content/uploads/2010/08/gtalk.jpg" alt="" title="gtalk" width="405" height="233" class="aligncenter size-full wp-image-765" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/technology-tips/login-multiple-gtalk-accounts-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress insert post programmatically</title>
		<link>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-insert-post-programmatically/</link>
		<comments>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-insert-post-programmatically/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 16:23:57 +0000</pubDate>
		<dc:creator>snilesh</dc:creator>
				<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.snilesh.com/?p=761</guid>
		<description><![CDATA[WordPress have function wp_insert_post() which can be used to create posts programmatically. this function returns a ID by using which we can add custom fields to that post. global $user_ID; $new_post = array( 'post_title' =&#62; 'Post title which created using wp_insert_post()', 'post_content' =&#62; 'This is content of the post', 'post_status' =&#62; 'publish', 'post_date' =&#62; date('Y-m-d [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-insert-post-programmatically%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.snilesh.com%2Fresources%2Fwordpress%2Fwordpress-tips-and-tricks%2Fwordpress-insert-post-programmatically%2F&amp;source=snilesh&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>WordPress have function wp_insert_post() which can be used to create posts programmatically. this function returns a ID by using which we can add custom fields to that post.</p>
<pre class="brush: php;">
global $user_ID;
$new_post = array(
'post_title' =&gt; 'Post title which created using wp_insert_post()',
'post_content' =&gt; 'This is content of the post',
'post_status' =&gt; 'publish',
'post_date' =&gt; date('Y-m-d H:i:s'),
'post_author' =&gt; $user_ID,
'post_type' =&gt; 'post',
'post_category' =&gt; array(0)
);
$post_id = wp_insert_post($new_post);
</pre>
<h2>Source</h2>
<ul>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_insert_post" title="Wordpress insert Post" target="_blank">Wp Insert Post</a></li>
<li><a href="http://www.webmaster-source.com/2010/02/09/programmatically-creating-posts-in-wordpress/" target="_blank">programmatically creating posts in wordpress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.snilesh.com/resources/wordpress/wordpress-tips-and-tricks/wordpress-insert-post-programmatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
