bp_get_potential_friend_id( int $user_id )

Return the ID of current user in the friend request loop.

Description

Parameters

$user_id

(int) (Optional) If provided, the function will simply return this value.

Return

(int) ID of potential friend.

Source

File: bp-friends/bp-friends-template.php

	function bp_get_potential_friend_id( $user_id = 0 ) {
		global $friends_template;

		if ( empty( $user_id ) && isset( $friends_template->friendship->friend ) )
			$user_id = $friends_template->friendship->friend->id;
		elseif ( empty( $user_id ) && !isset( $friends_template->friendship->friend ) )
			$user_id = bp_displayed_user_id();

		/**
		 * Filters the ID of current user in the friend request loop.
		 *
		 * @since BuddyPress 1.2.10
		 *
		 * @param int $user_id ID of current user in the friend request loop.
		 */
		return apply_filters( 'bp_get_potential_friend_id', (int) $user_id );
	}

Changelog

Changelog
Version Description
BuddyPress 1.2.6 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.