Make WordPress Core

Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#6727 closed enhancement (invalid)

Registration form message

Reported by: chaoticmortalcom Owned by:
Priority: normal Milestone:
Component: General Version:
Severity: normal Keywords:
Cc: Focuses:

Description

Instead of the current message for registering, (A password will be emailed to you.), is is possible to change it to "A password will be emailed to you, and you can change it the next time you are logged in" or etc.?

Change History (2)

#1 @MattyRob
18 years ago

  • Resolutioninvalid
  • Status newclosed

You can change it to whatever you like using the API hooks, write your own plugin as follows:

<?php
function my_reg_message() {
echo "<p>My message here</p>";
}
add_action('register_form', 'my_reg_message');
?>

#2 @thee17
18 years ago

  • Milestone 2.7
Note: See TracTickets for help on using tickets.