<?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>madebysimon</title>
	<atom:link href="http://madebysimon.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://madebysimon.co.uk</link>
	<description>HI, I&#039;M SIMON JOHNSTONE, AND I&#039;M A FREELANCE WEB DESIGNER, BASED IN SOUTHEND-ON-SEA, ESSEX. AND MADEBYSIMON IS MY PORTFOLIO &#38; BLOG.</description>
	<lastBuildDate>Sat, 03 Dec 2011 09:52:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Add a favicon via WordPress theme functions file</title>
		<link>http://madebysimon.co.uk/add-a-favicon-via-wordpress-theme-functions-file/</link>
		<comments>http://madebysimon.co.uk/add-a-favicon-via-wordpress-theme-functions-file/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:54:36 +0000</pubDate>
		<dc:creator>Simon Johnstone</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Functions]]></category>

		<guid isPermaLink="false">http://madebysimon.co.uk/?p=12</guid>
		<description><![CDATA[Every blog deserves to have its own identity. You can add this identity by adding a favicon code in your themes header.php file, &#60;link rel=&#34;shortcut icon&#34; type=&#34;image/x-icon&#34; href=&#34;/favicon.ico&#34;&#62; or you can make it easier for yourself by simply adding the &#8230; <a href="http://madebysimon.co.uk/add-a-favicon-via-wordpress-theme-functions-file/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every blog deserves to have its own identity. You can add this identity by adding a favicon code in your themes header.php file,</p>
<pre class="brush: html">
&lt;link rel=&quot;shortcut icon&quot; type=&quot;image/x-icon&quot; href=&quot;/favicon.ico&quot;&gt;
</pre>
<p> or you can make it easier for yourself by simply adding the following code in your themes functions.php file.<br />
<span id="more-12"></span></p>
<pre class="brush: php">
// add a favicon to your Blog
function blog_favicon() {
echo &#039;&lt;link rel=&quot;Shortcut Icon&quot; type=&quot;image/x-icon&quot; href=&quot;&#039;.get_bloginfo(&#039;wpurl&#039;).&#039;http://yourwebsite.com/favicon.ico&quot; /&gt;&#039;;
}
add_action(&#039;wp_head&#039;, &#039;blog_favicon&#039;);
</pre>
<p>Don&#8217;t forget to change yourwebsite.com to your own web address.</p>
<p>Now whenever you are developing the theme, just upload the .ico file in the root folder where the blog is uploaded. You can also modify the file destination if you like. Often theme developers forget to change the URL of the favicon. This can eliminate another worry.</p>
]]></content:encoded>
			<wfw:commentRss>http://madebysimon.co.uk/add-a-favicon-via-wordpress-theme-functions-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

