• Hi everyone,
    I want to create a welcome message for guest and for registered users.

    conditions:
    if not logged in/guest:
    display: Welcome guest! and so on..

    if logged in/returning back users:
    display: Welcome back {username} … and so on..

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try:

    <?php if(!$user_ID ) :?>
    Welcome guest! and so on..
    
    <?php else :?>
    Welcome back <?php echo $user_identity; ?> ...
    
    <?php endif;?>

    where would i put this code?

    i try this on wp 2.9.1

    <?php if(!$user_ID ) :?>
    Welcome guest! and so on..
    
    <?php else :?>
    Welcome back <?php echo $current_user->user_login; ?> ...
    
    <?php endif;?>

    it’s works …. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Welcome message for guest’ is closed to new replies.