Forums

Join
bbPress Support ForumsTroubleshootingShow the last user have joined

Info

Tags

Show the last user have joined

  1. Hello,

    in the front-page, i want to show the name and the link of this profile, of the membre have joined in last the forum, but how please ? :)

    thanks,

    Fred

  2. 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; ?>
  3. You must log in to post.