bp_get_member_types( array|string $args = array(), string $output = 'names', string $operator = 'and' )

Get a list of all registered profile type objects.

Description

See also

Parameters

$args

(Optional) An array of key => value arguments to match against the profile type objects.

Default value: array()

$output

(Optional) The type of output to return. Accepts 'names' or 'objects'. Default 'names'.

Default value: 'names'

$operator

(Optional) The logical operation to perform. 'or' means only one element from the array needs to match; 'and' means all elements must match. Accepts 'or' or 'and'. Default 'and'.

Default value: 'and'

Return

(array) A list of profile type names or objects.

Source

File: bp-members/bp-members-functions.php

2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
function bp_get_member_types( $args = array(), $output = 'names', $operator = 'and' ) {
    $types = buddypress()->members->types;
 
    $types = wp_filter_object_list( $types, $args, $operator );
 
    /**
     * Filters the array of profile type objects.
     *
     * This filter is run before the $output filter has been applied, so that
     * filtering functions have access to the entire profile type objects.
     *
     * @since BuddyPress 2.2.0
     *
     * @param array  $types     profile type objects, keyed by name.
     * @param array  $args      Array of key=>value arguments for filtering.
     * @param string $operator  'or' to match any of $args, 'and' to require all.
     */
    $types = apply_filters( 'bp_get_member_types', $types, $args, $operator );
 
    if ( 'names' === $output ) {
        $types = wp_list_pluck( $types, 'name' );
    }
 
    return $types;
}

Changelog

Changelog
Version Description
BuddyPress 2.2.0 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.