Search code examples
wordpressbuddypress

is there any thing similar to bp_get_member_id in buddypress?


Does anybody know how can i get the member id in a loop of buddy press:

  `<?php while ( bp_members() ) : bp_the_member(); ?>`

there is the bp_member_name, but i dont know how to get the id.... any ideas?


Solution

  • I believe you can use:

      bp_get_member_user_id()
    

    That should get you the member id.

    Hope this helps.