• The date of registration is important.
    It was there before with another designer.
    How do I get it back?

Viewing 2 replies - 1 through 2 (of 2 total)
  • To show the date of registration place the code in author bio codes (Author).
    Registered Date : <?php echo $registered; ?>

    Just using the $registered variable isn’t enough because you need to access the database to retrieve the date of registration. This is one way to do this.

    <?php
    $user = get_userdata( $user_id );
    $registerdate = $user->user_registered; ?>
    
    <p>Registered Date: <?php echo $registerdate; ?></p>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘showing date of user signing in’ is closed to new replies.