Quantcast
Channel: Vishmax.com » WP Snippets
Viewing all articles
Browse latest Browse all 10

How to add custom text to WordPress login page

$
0
0

If you want to replace and show your own message or text to WordPress login page here is a good code, just copy and paste it on your functions.php and edit the “message” part of code to your own text.

 
<?php
 
 
function custom_login_msg( $message ) {
    if ( empty($message) ){
        return "<p class='message'>Hi Edit this line and place your custom Message here</p>";
    } else {
        return $message;
    }
}
add_filter( 'login_message', 'custom_login_msg' );
 
 
?>

Viewing all articles
Browse latest Browse all 10

Latest Images

Trending Articles





Latest Images