Here is code which will show you wordpress bbpress topic author ID and wordpress current user id.
1 2 3 4 5 6 | <?php $author_id = get_the_author_meta( 'ID' ) ; $currentuserID = bbp_get_current_user_id(); echo 'Author ID ' . $author_id . '' ; echo 'Current User Id' . $currentuserID . '' ; ?> |