Re: Show the last user have joined
Show last registered user? Here y’go:
<?php include_once("bb-includes/statistics-functions.php"); ?>
Our newest member is <?php if ( $users = get_recent_registrants(1) ) : foreach ( $users as $user ) : ?>
<a href="<?php user_profile_link( $user->ID ); ?>"><?php echo get_user_name( $user->ID ); ?></a>
<?php endforeach; endif; ?>