<?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>wpyag.com &#187; WordPress Tips and Tricks</title>
	<atom:link href="http://www.wpyag.com/category/wordpress-tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpyag.com</link>
	<description>Free and Premium WordPress Themes</description>
	<lastBuildDate>Tue, 01 Nov 2011 13:23:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to create WordPress shortcode for Adsense</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-create-wordpress-shortcode-for-adsense/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-create-wordpress-shortcode-for-adsense/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 11:47:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=836</guid>
		<description><![CDATA[There are few very good WordPress plugins for managing Google Adsense ads on your WordPress site. You can use any good WordPress plugin for automatically insetting Google Adsense code Or any other ads code in your WordPress site. Another easy [..]]]></description>
			<content:encoded><![CDATA[<p>There are few very good WordPress plugins for managing Google Adsense ads on your WordPress site. You can use any good WordPress plugin for automatically insetting Google Adsense code Or any other ads code in your WordPress site.<br />
<span id="more-836"></span></p>
<p><a href="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-short-codes.png" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-short-codes.png" alt="" title="wordpress-short-codes" width="620" height="175" class="aligncenter size-full wp-image-837" /></a></p>
<p>Another easy way to insert Adsense code manually inside a post is using short code.</p>
<h3>How to create Google Adsense WordPress Shortcode</h3>
<p><strong>Part one: Get Adsense Ads code:</strong></p>
<ul>
<li>Login in your Google Adsense Account</li>
<li>Navigate to: <strong>Adsense Setup >> Get Ads >> AdSense for Content</strong> and create a ad. Get the Google Adsense Ads code.</li>
</ul>
<p><strong>Part Two: Create custom short code in WordPress:</strong></p>
<ul>
<li>Open function.php file of your active WordPress theme. Copy paste below codes in function.php
<pre class="prettyprint ">
&lt;?php
// Adsense Short code
function Google_Adsense( $atts, $content = null ) {
   return 'put your adsense code here';
}
add_shortcode('google_adsense', 'Google_Adsense');
?&gt;
</pre>
</li>
<li>In above code change <strong>put your adsense code here</strong> with your actual adsense code which you got in step 1.</li>
</ul>
<p>Done!!!</p>
<p>Now when creating a post, just use below code to insert Adsense code manually inside a post anywhere you want.</p>
<pre>
[google_adsense]
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-create-wordpress-shortcode-for-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change WordPress Login Logo</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-change-wordpress-login-logo/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-change-wordpress-login-logo/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 16:31:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=827</guid>
		<description><![CDATA[One thing WordPress still lacks is theme integrated Login / registration page. WordPress also by default uses WordPress logo on Login / registration page. If you allow registration on your WordPress site, you should consider using your site custom logo [..]]]></description>
			<content:encoded><![CDATA[<p>One thing WordPress still lacks is theme integrated Login / registration page. WordPress also by default uses WordPress logo on Login / registration page.<span id="more-827"></span></p>
<p><a href="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-login-form.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-login-form.jpg" alt="wordpress-login-form" title="wordpress-login-form" width="426" height="409" class="aligncenter size-full wp-image-828" /></a></p>
<p>If you allow registration on your WordPress site, you should consider using your site custom logo and avoid using WordPress default logo on login / signup page. This will give your site a professional impression.</p>
<p>Its very easy to change wordpress logo from login / signup page. Simply replace following image with your custom logo. Make sure you use same file name.</p>
<pre>
wp-admin/images/logo-login.png
</pre>
<p><a href="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-custom-login-form.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/09/wordpress-custom-login-form.jpg" alt="" title="wordpress-custom-login-form" width="432" height="409" class="alignnone size-full wp-image-833" /></a></p>
<div class="info">This custom logo can change to default when you upgrade your WordPress version. So, you may need to change this logo every time you upgrade WordPress.<br />
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-change-wordpress-login-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Facebook Share button in WordPress</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-share-button-in-wordpress/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-share-button-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 05:58:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=688</guid>
		<description><![CDATA[There are lots of WordPress plugins using which you can add Facebook Share button in your WordPress blog / site. But you can do same without using any plugin. Using Facebook Share button your site visitors can share the post [..]]]></description>
			<content:encoded><![CDATA[<p>There are lots of WordPress plugins using which you can add Facebook Share button in your WordPress blog / site. But you can do same without using any plugin.<br />
<span id="more-688"></span><br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/07/Wordpress-Facebook-share-button.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/Wordpress-Facebook-share-button.jpg" alt="" title="Wordpress-Facebook-share-button" width="580" height="196" class="alignnone size-full wp-image-690" /></a></p>
<p>Using Facebook Share button your site visitors can share the post on Facebook. This is very useful for getting some good Facebook traffic.</p>
<p>In this tutorial, I will show you how to add Facebook official Share button on single posts pages of WordPress.</p>
<ul>
<li>Open single.php file of your WordPress theme.</li>
<li>Add any of the following code where you want to display Facebook Share button.
<pre class="prettyprint ">
&lt;div&gt;
&lt;a name=&quot;fb_share&quot; type=&quot;button_count&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="prettyprint ">
&lt;div&gt;
&lt;a name=&quot;fb_share&quot; type=&quot;box_count&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="prettyprint ">
&lt;div&gt;
&lt;a name=&quot;fb_share&quot; type=&quot;button&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="prettyprint ">
&lt;div&gt;
&lt;a name=&quot;fb_share&quot; type=&quot;icon_link&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<pre class="prettyprint ">
&lt;div&gt;
&lt;a name=&quot;fb_share&quot; type=&quot;icon&quot; share_url=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;/a&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;/div&gt;
</pre>
<p>Different code above display different layout for Share button.
</li>
</ul>
<p>Done!!!</p>
<p>Now single posts pages of your wordpress powered site should display Facebook official Share button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-share-button-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Facebook send button in WordPress</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-send-button-in-wordpress/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-send-button-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 05:41:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=681</guid>
		<description><![CDATA[There are lots of WordPress plugins using which you can add Facebook Send button in your WordPress blog / site. But you can do same without using any plugin. Using Facebook send button, you can Share that post url via [..]]]></description>
			<content:encoded><![CDATA[<p>There are lots of WordPress plugins using which you can add Facebook Send button in your WordPress blog / site. But you can do same without using any plugin.<span id="more-681"></span><br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/07/WordPress-facebook-send-button.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/WordPress-facebook-send-button.jpg" alt="" title="WordPress-facebook-send-button" width="290" height="257" class="aligncenter size-full wp-image-682" /></a><br />
Using Facebook send button, you can Share that post url via mail. In this tutorial, I will show you how to add Facebook send button in WordPress on single posts pages.</p>
<ul>
<li>Open single.php file of your WordPress theme.</li>
<li>Add following code where you want to display Facebook Send button.
<pre class="prettyprint ">
&lt;div&gt;
&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;
&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:send href=&quot;&lt;?php the_permalink(); ?&gt;&quot; font=&quot;&quot;&gt;&lt;/fb:send&gt;
&lt;/div&gt;
</pre>
</li>
</ul>
<p>Done!!!</p>
<p>Now single posts pages should display Facebook official send button.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-send-button-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Facebook like button in WordPress</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-like-button-in-wordpress/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-like-button-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 05:06:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Like]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=659</guid>
		<description><![CDATA[There are lots of WordPress plugins using which you can add Facebook like button in your WordPress blog / site. But you can do same without using any plugin. We should avoid using many WordPress plugins. In this tutorial I [..]]]></description>
			<content:encoded><![CDATA[<p>There are lots of WordPress plugins using which you can add Facebook like button in your WordPress blog / site. But you can do same without using any plugin. We should avoid using many WordPress plugins.<br />
<span id="more-659"></span><br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/07/Wordpress-facebook-like.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/Wordpress-facebook-like.jpg" alt="" title="Wordpress-facebook-like" width="610" height="216" class="aligncenter size-full wp-image-660" /></a><br />
In this tutorial I will show how to add Facebook like button on single post pages of WordPress powered sites.</p>
<ul>
<li>Open single.php file of your WordPress theme.</li>
<li>Add following code where you want to display Facebook like button.
<pre class="prettyprint ">
&lt;div&gt;
&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:like href=&quot;&lt;?php echo get_permalink(); ?&gt;&quot; show_faces=&quot;false&quot; width=&quot;50&quot; layout=&quot;box_count&quot; &gt;&lt;/fb:like&gt;
&lt;/div&gt;
</pre>
</li>
</ul>
<p>Done!!!</p>
<p>Now single posts pages should display Facebook official like button. Something like this:<br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/07/121.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/121.jpg" alt="" title="12" width="486" height="134" class="alignnone size-full wp-image-673" /></a></p>
<p>If you want to display simple Facebook Like button with only the count, then use below codes.</p>
<pre class="prettyprint ">
&lt;div&gt;
&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:like href=&quot;&lt;?php echo get_permalink(); ?&gt;&quot; show_faces=&quot;false&quot; layout=&quot;button_count&quot; &gt;&lt;/fb:like&gt;
&lt;/div&gt;
</pre>
<p>It will appear like this:<br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/07/13.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/13.jpg" alt="" title="13" width="393" height="89" class="alignnone size-full wp-image-676" /></a></p>
<p>If you want to change text to something else like, Recommend, use just add action=&#8221;recommend&#8221; in above code. Something like this:</p>
<pre class="prettyprint ">
&lt;div&gt;
&lt;script src=&quot;http://connect.facebook.net/en_US/all.js#xfbml=1&quot;&gt;&lt;/script&gt;&lt;fb:like href=&quot;&lt;?php echo get_permalink(); ?&gt;&quot; action=&quot;recommend&quot; show_face=&quot;false&quot; width=&quot;50&quot; layout=&quot;box_count&quot; &gt;&lt;/fb:like&gt;
&lt;/div&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-facebook-like-button-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution &#8211; Error 400 after WordPress site moved to new server</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/solution-error-400-after-wordpress-site-moved-to-new-server/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/solution-error-400-after-wordpress-site-moved-to-new-server/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 02:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[400]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Permalink]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=654</guid>
		<description><![CDATA[WordPress site shows &#8220;Error 400 page not found&#8221; error message after you moved your site to new server. Homepage may be appearing perfectly, but category pages, single post pages etc will give you Error 400. Its a very common problem [..]]]></description>
			<content:encoded><![CDATA[<p>WordPress site shows &#8220;Error 400 page not found&#8221; error message after you moved your site to new server. Homepage may be appearing perfectly, but category pages, single post pages etc will give you Error 400.<span id="more-654"></span></p>
<p><a href="http://www.wpyag.com/wp-content/uploads/2011/07/http400.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/07/http400.jpg" alt="" title="http400" width="288" height="211" class="alignnone size-full wp-image-655" /></a><br />
Its a very common problem with WordPress when you use custom permalinks and you move your site to another server or hosting provider.</p>
<p><strong>A very simple solution is:</strong><br />
Login in WordPress admin panel (dashboard). Navigate to <strong>Settings > Permalink</strong><br />
And re-submit your custom permalink settings. Problem should be solved now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/solution-error-400-after-wordpress-site-moved-to-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display category description in category menu bar</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-display-category-description-in-category-menu-bar/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-display-category-description-in-category-menu-bar/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 03:25:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[theming]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=636</guid>
		<description><![CDATA[You may have noticed in some WordPress themes that category menu bar also display category description text. By default wp_list_categories function will display only category links. In this tutorial I will show you how to build a category menu with [..]]]></description>
			<content:encoded><![CDATA[<p>You may have noticed in some WordPress themes that category menu bar also display category description text. By default wp_list_categories function will display only category links. In this tutorial I will show you how to build a category menu with description text.</p>
<p><strong>Step 1</strong><br />
Copy paste following codes in header.php of your wordpress theme.</p>
<pre class="prettyprint ">
&lt;div id=&quot;wpyagnav&quot;&gt;
&lt;ul class=&quot;wpyagcat&quot;&gt;
&lt;?php
$args=array(
);
$categories=get_categories($args);
foreach($categories as $category) {
echo '&lt;li&gt;&lt;strong&gt;&lt;a href=&quot;' . get_category_link( $category-&gt;term_id ) . '&quot; title=&quot;' . sprintf( __( &quot;View all posts in %s&quot; ), $category-&gt;name ) . '&quot; ' . '&gt;' . $category-&gt;name.'&lt;/a&gt;&lt;/strong&gt;';
echo '&lt;br /&gt;'. $category-&gt;description . '&lt;/li&gt;';
}
?&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p><strong>Step 2</strong><br />
Add following CSS codes in style.css of your wordpress theme.</p>
<pre class="prettyprint ">
#wpyagnav{
height: 61px;
background: #d0d0d0;
margin-left: auto;
margin-right: auto;
width: 980px;
}

ul.wpyagcat{
padding-top: 11px;
}

ul.wpyagcat li{
display: inline;
float: left;
position: relative;
margin-left: 18px;
text-align: center;
}
</pre>
<p>Our category menu with description text is ready.<br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/06/111.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/06/111.jpg" alt="" title="11" width="514" height="243" class="alignnone size-full wp-image-649" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-display-category-description-in-category-menu-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to disable Visual Editor in WordPress</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-disable-visual-editor-in-wordpress/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-disable-visual-editor-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 17:54:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=561</guid>
		<description><![CDATA[Many bloggers like me prefer using HTML editor. Visual editor per user can be disabled from wordpress admin panel. But if you want to completely disable visual editor, simply add below code in functions.php file of your theme. &#60;?php add_filter('user_can_richedit' [..]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress.png" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress.png" alt="" title="wordpress" width="256" height="256" class="aligncenter size-full wp-image-562" /></a></p>
<p>Many bloggers like me prefer using HTML editor. Visual editor per user can be disabled from wordpress admin panel.<br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/04/101.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/04/101.jpg" alt="" title="10" width="550" height="188" class="alignnone size-full wp-image-565" /></a></p>
<p>But if you want to completely disable visual editor, simply add below code in functions.php file of your theme.</p>
<pre class="prettyprint ">
&lt;?php
add_filter('user_can_richedit' , create_function('' , 'return false;') , 50);
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-disable-visual-editor-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Favicon in WordPress</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-favicon-in-wordpress/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-favicon-in-wordpress/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 08:45:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>
		<category><![CDATA[favicon]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=567</guid>
		<description><![CDATA[A favicon is a small 16×16 px image that is shown inside the browser’s location bar and bookmark menu when your website is called. Here is how you can add a favicon icon for your WordPress site. Step 1: Get [..]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress-icon.png" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress-icon.png" alt="" title="wordpress-icon" width="300" height="300" class="aligncenter size-full wp-image-568" /></a><br />
A favicon is a small 16×16 px image that is shown inside the browser’s location bar and bookmark menu when your website is called. Here is how you can add a favicon icon for your WordPress site.<br />
<span id="more-567"></span></p>
<h2>Step 1:</h2>
<p>Get a faviocn icon. There are lots of free online tools for creating a favicon icon.</p>
<h2>Step 2:</h2>
<p>Upload the favicon icon in your theme directory folder. It should be something like this (/wp-content/themes/theme-name/favicon.ico)</p>
<h2>Step 3:</h2>
<p>Add following code in header.php file of your theme before closing head tag.</p>
<pre class="prettyprint ">
&lt;link rel=&quot;shortcut icon&quot; href=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/favicon.ico&quot; /&gt;
</pre>
<p>Done..!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-add-favicon-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove WordPress admin menu bar</title>
		<link>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-remove-wordpress-admin-menu-bar/</link>
		<comments>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-remove-wordpress-admin-menu-bar/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 17:43:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.wpyag.com/?p=555</guid>
		<description><![CDATA[Since version 3.0 WordPress has introduced a quick admin menu bar. If you do not like this quick admin menu, here is how you can disable / remove it. Simply add below code in function.php file of the theme. &#60;?php [..]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress1.png" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/04/wordpress1-300x300.png" alt="" title="wordpress1" width="300" height="300" class="aligncenter size-medium wp-image-556" /></a><br />
Since version 3.0 WordPress has introduced a quick admin menu bar.<br />
<a href="http://www.wpyag.com/wp-content/uploads/2011/04/9.jpg" rel="prettyPhoto[gallery2]"><img src="http://www.wpyag.com/wp-content/uploads/2011/04/9.jpg" alt="" title="9" width="542" height="181" class="alignnone size-full wp-image-557" /></a></p>
<p>If you do not like this quick admin menu, here is how you can disable / remove it. Simply add below code in function.php file of the theme.<br />
<span id="more-555"></span></p>
<pre class="prettyprint ">
&lt;?php
add_filter( 'show_admin_bar', '__return_false' );
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.wpyag.com/wordpress-tips-and-tricks/how-to-remove-wordpress-admin-menu-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

