bbp_is_user_subscribed
bbp_is_user_subscribed
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_is_user_subscribed') is found 1 times:
- /includes/users/engagements.php line 735
function bbp_is_user_subscribed( $user_id = 0, $object_id = 0, $type = 'post' ) { $retval = bbp_is_object_of_user( $object_id, $user_id, '_bbp_subscription', $type ); // Filter & return return (bool) apply_filters( 'bbp_is_user_subscribed', $retval, $user_id, $object_id, $type ); } /** * Add a user subscription * * @since 2.5.0 bbPress (r5156)