Quantcast
Channel: Crunchify
Viewing all articles
Browse latest Browse all 1037

How to Show a Custom Message on WordPress Registration Page

$
0
0

WordPress-custom-registration-forms-Crunchify.com

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 dotted #464646;padding:5px">
            <p style="margin:5px 0;">
            Your Custom Message Goes here..!!
            </p>
        </div>';
    echo $html;
}

Enjoy and Have a fun..!!

The post How to Show a Custom Message on WordPress Registration Page appeared first on Crunchify.com.


Viewing all articles
Browse latest Browse all 1037

Trending Articles