#6727 closed enhancement (invalid)
Registration form message
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | |
| Component: | General | Keywords: | |
| Focuses: | Cc: |
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)
Note: See
TracTickets for help on using
tickets.
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');
?>