<?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>WP Engineer &#187; Favicon</title>
	<atom:link href="http://wpengineer.com/tag/favicon/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpengineer.com</link>
	<description>WordPress News, Hacks, Tips, Tutorials, Plugins and Themes</description>
	<lastBuildDate>Sun, 22 Jan 2012 13:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Different Favicons For Backend And Frontend</title>
		<link>http://wpengineer.com/1068/different-favicons-backend-frontend/</link>
		<comments>http://wpengineer.com/1068/different-favicons-backend-frontend/#comments</comments>
		<pubDate>Mon, 18 May 2009 16:03:31 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[Favicon]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://wpengineer.com/?p=1068</guid>
		<description><![CDATA[Do you have the same problem? We all have a lot tabs open, especially of our own blogs and all tabs look the same, since there is the same favicon for backend and frontend in your tabs. It can be annoying to click around to find the admin tab between all the opened tabs of [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have the same problem? We all have a lot tabs open, especially of our own blogs and all tabs look the same, since there is the same favicon for backend and frontend in your tabs. It can be annoying to click around to find the admin tab between all the opened tabs of some posts of your blog. As you can see on this screenshot:</p>
<p><img src="http://wpengineer.com/wp-content/uploads/favicon-wpengineer.jpg" alt="favicon-wpengineer" title="favicon-wpengineer" width="450" height="209" class="aligncenter size-full wp-image-1251" /></p>
<p>A little hack in your <code>functions.php</code> of your theme can help you with this problem:</p>
<pre lang="php">
/* Different Favicon for Backend */
function favicon4admin() {
 echo &#039;&lt;link rel=&quot;Shortcut Icon&quot; type=&quot;image/x-icon&quot; href=&quot;&#039; . get_bloginfo(&#039;wpurl&#039;) . &#039;/wp-content/favicon.ico&quot; /&gt;&#039;;
}
add_action( &#039;admin_head&#039;, &#039;favicon4admin&#039; );
</pre>
<p>In this case we put the admin favicon in our <code>wp-content</code> folder. Done!</p>
<p><img src="http://wpengineer.com/wp-content/uploads/favicon-wpengineer2.jpg" alt="favicon-wpengineer2" title="favicon-wpengineer2" width="450" height="209" class="aligncenter size-full wp-image-1254" /></p>
<p>It can be a little helpful hack for your daily work. Of course, the text in the tabs are different most of the time, but not always, and a different looking favicon is more visible. </p>
<p>An easy tool to create a favicon is <a href="http://tools.dynamicdrive.com/favicon/">available at dynamicdrive</a><br />
<hr /><a href="http://wpplugins.com/plugin/281/snippets" title="More informations about this plugin for WordPress"><img src="http://wpengineer.com/wp-content/themes/wpe-3/images/snippets-125-125.png" height="90" alt="WordPress Snippet Plugin" /></a> <a href="http://xtreme-theme.com"><img src="http://wpengineer.com/wp-content/uploads/feed-banner-2.jpg" alt="Xtreme One WordPress Framework"/></a><br />
&copy; <a href="http://wpengineer.com/">WP Engineer Team</a>, All rights reserved <small>(Digital Fingerprint: WPEngineer-be0254ce2b4972feb4b9cb72034a092d)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://wpengineer.com/1068/different-favicons-backend-frontend/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

