If you have a Multi Author blog it’s always nice to show some Text or custom message on the registration page. Show your way to welcome them or thanking them to join your community. So the solution to it is pretty simple
Just copy and paste the below code in your functions.php :
add_action('register_form', 'register_message_wpden'); function register_message_wpden() { $html = ' <div style="margin:10px 0;border:1px solid #e5e5e5;padding:10px"> <p style="margin:5px 0;"> Thank you for Joining WP Den ! WPDen.net </p> </div>'; echo $html; }
Don’t forget to change your Custom Message at line “6
” then just hit save. I hope all of you like it.