Are you a WordPress developers or Advanced WordPress Users? You must be very interested in a simple way to create role-specific registration forms for your WordPress website.
Below code will help you show a custom message on WordPress Registration page. Put this into your functions.php file.
add_action('register_form', 'register_message');
function register_message() {
$html = '
<div style="margin:5px 0;border:1px solid red;padding:5px">
<p style="margin:5px 0;">
Hello Cruncher..!! Use this form to reigster at Crunchify.com.
</p>
</div>';
echo $html;
}
Here is a result:
Enjoy and Have a fun..!!


