bp_displayed_user_id()
Get the ID of the currently displayed user.
Description Description
Return Return
(int) $id ID of the currently displayed user.
Source Source
File: bp-core/bp-core-template.php
function bp_displayed_user_id() { $bp = buddypress(); $id = !empty( $bp->displayed_user->id ) ? $bp->displayed_user->id : 0; /** * Filters the ID of the currently displayed user. * * @since 1.0.0 * * @param int $id ID of the currently displayed user. */ return (int) apply_filters( 'bp_displayed_user_id', $id ); }
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |