<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: How to add static text to login form / wp-login.php</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: How to add static text to login form / wp-login.php</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 05:41:42 +0000</pubDate>

<item>
<title>dimadin on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1119282</link>
<pubDate>Sun, 28 Jun 2009 11:47:46 +0000</pubDate>
<dc:creator>dimadin</dc:creator>
<guid isPermaLink="false">1119282@http://wordpress.org/support/</guid>
<description>&#60;p&#62;This message would be shown on both login and registration sceen, but how to show it only on login screen? I didn't find some conditional tags for it.
&#60;/p&#62;</description>
</item>
<item>
<title>tationline on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1080129</link>
<pubDate>Thu, 21 May 2009 20:13:37 +0000</pubDate>
<dc:creator>tationline</dc:creator>
<guid isPermaLink="false">1080129@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi Michael,&#60;/p&#62;
&#60;p&#62;thanks again for your quick response!&#60;br /&#62;
This is exactly what I was looking for!!!&#60;/p&#62;
&#60;p&#62;I don't like to modify core files either, but in this case it is just one line (which I can easily remember) and is definitely faster to implement than creating graphic files.&#60;/p&#62;
&#60;p&#62;Thanks again for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1080100</link>
<pubDate>Thu, 21 May 2009 19:31:27 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1080100@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Note: in 2.8 (once it is released) looks like the login_message is made more pluggable so you could add this to your theme's function.php file so you don't need to modify core code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function custom_login_message() {
$message = &#38;quot;Welcome to my blog, you need to be registered to see content&#38;quot;;
return $message;
}
add_filter(&#38;#39;login_message&#38;#39;, &#38;#39;custom_login_message&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>MichaelH on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1080096</link>
<pubDate>Thu, 21 May 2009 19:27:18 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1080096@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hate making changes to core code, but in wp-login.php you could change:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ( !empty( $message ) ) echo apply_filters(&#38;#39;login_message&#38;#39;, $message) . &#38;quot;\n&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$message = &#38;quot;Welcome to my blog, you need to be registered to see content&#38;quot;;
if ( !empty( $message ) ) echo apply_filters(&#38;#39;login_message&#38;#39;, $message) . &#38;quot;\n&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>tationline on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1080045</link>
<pubDate>Thu, 21 May 2009 18:36:51 +0000</pubDate>
<dc:creator>tationline</dc:creator>
<guid isPermaLink="false">1080045@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi Michael,&#60;/p&#62;
&#60;p&#62;thanks for your response. I already did Google and WP-Plugin-searches, but all results I found will modify/replace the graphics file only and/or changing the text-layout via CSS.&#60;br /&#62;
All I want to do is to add one line of text (something like &#34;Welcome to my blog, you need to be registered to see content&#34;) above or below the login box. &#60;/p&#62;
&#60;p&#62;I was hoping, that this would only be one line of code, that needs to be added &#34;somewhere&#34; to wp-login.php. Or is this something that would need far more code changes?&#60;/p&#62;
&#60;p&#62;I do not want to create a new graphic file, because this would take much more time ... if it should look nice.
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1079853</link>
<pubDate>Thu, 21 May 2009 15:00:32 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1079853@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You might find it easier to identify a plugin that will help you with that.  Examples:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/register-plus/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/register-plus/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/extend/plugins/tags/register&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/tags/register&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/extend/plugins/tags/login&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/tags/login&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And this search:&#60;br /&#62;
&#60;a href=&#34;http://www.google.com/search?q=wordpress+plugin+customize+login+screen&#34; rel=&#34;nofollow&#34;&#62;http://www.google.com/search?q=wordpress+plugin+customize+login+screen&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>tationline on "How to add static text to login form / wp-login.php"</title>
<link>http://wordpress.org/support/topic/272600#post-1079707</link>
<pubDate>Thu, 21 May 2009 11:16:11 +0000</pubDate>
<dc:creator>tationline</dc:creator>
<guid isPermaLink="false">1079707@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;how can I add static text to the loginform?&#60;br /&#62;
I want to show a small welcome text below the image logo-login.gif, but all I tried didn't work (I am a Wordpress newbie ...).&#60;/p&#62;
&#60;p&#62;I couldn't find any information so far (the only way I found was to edit the graphic file ...).&#60;/p&#62;
&#60;p&#62;Thanks in advance for help :-)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
