<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Customize Wordpress Login Page</title>
	<atom:link href="http://www.wpcookies.com/how-to-customize-wordpress-login-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/</link>
	<description>Wordpress Tips &#38; Tricks, Themes, Plugins, Showcase and more...</description>
	<lastBuildDate>Sun, 27 Feb 2011 19:35:29 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chris Mower</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-2908</link>
		<dc:creator>Chris Mower</dc:creator>
		<pubDate>Thu, 21 Oct 2010 06:13:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-2908</guid>
		<description>Hey WordPress Chef, this is an awesome post.  Thank you! 

I had to change a few things to make it work as well.

1st change (mentioned by Claudio)--

Add

add_action(&#039;login_head&#039;, &#039;custom_login&#039;);

After (or before) the custom_login declaration.

2nd change --

Changed &#039;template_directory&#039; to &#039;stylesheet_directory&#039;

After that, it worked great.

Seriously, thanks for post.  Awesome.</description>
		<content:encoded><![CDATA[<p>Hey WordPress Chef, this is an awesome post.  Thank you! </p>
<p>I had to change a few things to make it work as well.</p>
<p>1st change (mentioned by Claudio)&#8211;</p>
<p>Add</p>
<p>add_action(&#8216;login_head&#8217;, &#8216;custom_login&#8217;);</p>
<p>After (or before) the custom_login declaration.</p>
<p>2nd change &#8211;</p>
<p>Changed &#8216;template_directory&#8217; to &#8217;stylesheet_directory&#8217;</p>
<p>After that, it worked great.</p>
<p>Seriously, thanks for post.  Awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-2673</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 04 Oct 2010 23:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-2673</guid>
		<description>Thanks Claudio!

I was using a custom theme in Wordpress 3.0.1 and I in functions.php what i had to put was:

function custom_login() {
echo &#039;&#039;;
}
add_action(&#039;login_head&#039;, &#039;custom_login&#039;);</description>
		<content:encoded><![CDATA[<p>Thanks Claudio!</p>
<p>I was using a custom theme in Wordpress 3.0.1 and I in functions.php what i had to put was:</p>
<p>function custom_login() {<br />
echo &#8221;;<br />
}<br />
add_action(&#8216;login_head&#8217;, &#8216;custom_login&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Claudio</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-580</link>
		<dc:creator>Claudio</dc:creator>
		<pubDate>Tue, 11 May 2010 23:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-580</guid>
		<description>Hi,
many thanks for ur tips, being new to wordpress world, they were precious!
Anyway, at the first attempt, just modifying the functions.php file, it didnt work. 
At the end I could find that addind the code 

add_action(&#039;login_head&#039;, &#039;custom_login&#039;);

just after &quot;custom_login&quot; declaration it works fine!
May be this tip could be helpfull to somebody!

P.S. I&#039;m using WP 2.9.2 version</description>
		<content:encoded><![CDATA[<p>Hi,<br />
many thanks for ur tips, being new to wordpress world, they were precious!<br />
Anyway, at the first attempt, just modifying the functions.php file, it didnt work.<br />
At the end I could find that addind the code </p>
<p>add_action(&#8216;login_head&#8217;, &#8216;custom_login&#8217;);</p>
<p>just after &#8220;custom_login&#8221; declaration it works fine!<br />
May be this tip could be helpfull to somebody!</p>
<p>P.S. I&#8217;m using WP 2.9.2 version</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Chef</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-223</link>
		<dc:creator>Wordpress Chef</dc:creator>
		<pubDate>Fri, 02 Apr 2010 11:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-223</guid>
		<description>Make sure you have overwritten &lt;strong&gt;functions.php&lt;/strong&gt; file on server within active theme&#039;s directory.

You may also post functions.php code here so we may check.</description>
		<content:encoded><![CDATA[<p>Make sure you have overwritten <strong>functions.php</strong> file on server within active theme&#8217;s directory.</p>
<p>You may also post functions.php code here so we may check.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huw</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-214</link>
		<dc:creator>Huw</dc:creator>
		<pubDate>Thu, 01 Apr 2010 11:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-214</guid>
		<description>Hi,
I cannot get this to work either? I tried it on local machine first which worked, and just copied the files over - now nothing happens at all. Just normal wordpress login.

Any help would be appreciated.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I cannot get this to work either? I tried it on local machine first which worked, and just copied the files over &#8211; now nothing happens at all. Just normal wordpress login.</p>
<p>Any help would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Chef</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-42</link>
		<dc:creator>Wordpress Chef</dc:creator>
		<pubDate>Mon, 08 Mar 2010 08:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-42</guid>
		<description>Make sure you added the first code snippet within  tags of your theme&#039;s functions.php file and also send me the link of your blog where you are trying this hack.</description>
		<content:encoded><![CDATA[<p>Make sure you added the first code snippet within  tags of your theme&#8217;s functions.php file and also send me the link of your blog where you are trying this hack.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: USMCsky</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-40</link>
		<dc:creator>USMCsky</dc:creator>
		<pubDate>Sun, 07 Mar 2010 21:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-40</guid>
		<description>I have both pieces in place. Still not working for WP 2.9.2. I went so far as to strip all WP plug-ins from my localhost to ensure that there was no interference. This would be a beautiful tool if I could get it to work. My gun club has this exact need for its members. A custom login...

Nothing is ever easy in my world. But we grow from the experience.</description>
		<content:encoded><![CDATA[<p>I have both pieces in place. Still not working for WP 2.9.2. I went so far as to strip all WP plug-ins from my localhost to ensure that there was no interference. This would be a beautiful tool if I could get it to work. My gun club has this exact need for its members. A custom login&#8230;</p>
<p>Nothing is ever easy in my world. But we grow from the experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Chef</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-37</link>
		<dc:creator>Wordpress Chef</dc:creator>
		<pubDate>Sat, 06 Mar 2010 11:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-37</guid>
		<description>What problem are you facing??

	Have you added the code snippet in your theme&#039;s functions.php file?
	Make sure to put the custom-login.css file in your theme&#039;s directory.</description>
		<content:encoded><![CDATA[<p>What problem are you facing??</p>
<p>	Have you added the code snippet in your theme&#8217;s functions.php file?<br />
	Make sure to put the custom-login.css file in your theme&#8217;s directory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yimbo</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-35</link>
		<dc:creator>Yimbo</dc:creator>
		<pubDate>Fri, 05 Mar 2010 21:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-35</guid>
		<description>I can&#039;t get it to work.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kennedy's Garage</title>
		<link>http://www.wpcookies.com/how-to-customize-wordpress-login-page/comment-page-1/#comment-32</link>
		<dc:creator>Kennedy's Garage</dc:creator>
		<pubDate>Thu, 04 Mar 2010 16:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.wpcookies.com/?p=76#comment-32</guid>
		<description>I apologizes, I do not know what I was thinking. Has there always been a functions.php file in the themes folder? It must have been an old bad habit. I have just updated all my sites. Thanks for this knowledge on both subject.</description>
		<content:encoded><![CDATA[<p>I apologizes, I do not know what I was thinking. Has there always been a functions.php file in the themes folder? It must have been an old bad habit. I have just updated all my sites. Thanks for this knowledge on both subject.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

