Use sign up info in customers account area in WordPress?

When readers sign up for a account in our wordpress site. My team wants to use their first name they signed up with, to say Hi [firstname] welcome back!

Of course with having readers already I want their accounts to show that too. Could there be a short code or html to add?

Read More

Thanks!

Related posts

Leave a Reply

1 comment

  1. You can use something like this from functions.php

    function welcome_message_to_users() {
    global $current_user;
    get_currentuserinfo();
    if ( is_user_logged_in() ) {
        echo '<p>Welcome' . $current_user->display_name . '</p>';
    }
    

    }
    add_filter( ‘wp_head’, ‘welcome_message_to_users’ );