bp_pre_avatar_get_avatars_history

bp_pre_avatar_get_avatars_history

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: buddypress.14.5.0

apply_filters('bp_pre_avatar_get_avatars_history') is found 1 times:

  • /bp-core/bp-core-avatars.php line 2283
    	 * @param int        $item_id    The item ID we need the avatar version for.
    	 * @param string     $object     The object the item ID relates to.
    	 * @param string     $type       Get the `full`, `thumb` or `both` versions.
    	 */
    	$pre_filter = apply_filters( 'bp_pre_avatar_get_avatars_history', null, $item_id, $object, $type );
    
    	if ( null !== $pre_filter ) {
    		return $pre_filter;
    	}
    
    	if ( ! $item_id ) {