Description:

If you need to show some custom message in your registration form you can use this snippet to do it! What you need to do is apply the following code in your function.php file and a custom message will appear on the form!

The Code:

function wpc_form_message() {
    $wpc_show_message = '
        <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px">
            <p style="margin:5px 0;">
            CUSTOM MESSAGE HERE
            </p>
        </div>';
    echo $wpc_show_message;
}
add_action('register_form', 'wpc_form_message');